1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<script> /* eslint-disable no-unused-vars */ "use strict"; function throwErrorObject(value) { throw new Error("ThrowErrorObject"); } function throwValue(value) { otherFunction(value); } function otherFunction(value) { throw value; } </script>