| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/InternalError | [Back] [Original] |
Get to know MDN better
InternalError() InternalError
InternalError.prototype InternalError
InternalError.prototype.constructorInternalError InternalError
InternalError.prototype.nameInternalError.prototype.name "InternalError"
10
function loop(x) {
// "x >= 10" is the exit condition
if (x >= 10) return;
// do stuff
loop(x + 1); // the recursive call
}
loop(0);
function loop(x) {
if (x >= 1000000000000) return;
// do stuff
loop(x + 1);
}
loop(0);
// InternalError: too much recursion
InternalError: too much recursion.
| Web Proxy Viewer | New URL | Original Page |