16 lines
247 B
HTML
16 lines
247 B
HTML
<script>
|
|
/* eslint-disable no-unused-vars */
|
|
"use strict";
|
|
|
|
function throwErrorObject() {
|
|
throw new Error("ThrowErrorObject");
|
|
}
|
|
|
|
function throwValue(value) {
|
|
otherFunction(value);
|
|
}
|
|
|
|
function otherFunction(value) {
|
|
throw value;
|
|
}
|
|
</script>
|