Source code

Revision control

Copy as Markdown

Other Tools

<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>