| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Global_Objects/InternalError | [Back] [Original] |
Get to know MDN better
This page was translated from English by the community. Learn more and join the MDN Web Docs community.
: . , , . , , , .
InternalError , JavaScript.
, - , :
InternalError Error.
InternalError() InternalError.
InternalError.prototype InternalError.
InternalError.prototype.constructor-, . InternalError InternalError.
InternalError.prototype.name . InternalError.prototype.name "InternalError".
10 .
function loop(x) {
//
if (x >= 10) return;
//
loop(x + 1);
}
loop(0);
:
function loop(x) {
if (x >= 1000000000000) return;
loop(x + 1);
}
loop(0);
// InternalError: too much recursion
InternalError: too much recursion.
- .
This page was last modified on 12 2024 . by MDN contributors.
InternalErrorErrorObject/FunctionObject.prototype.__defineGetter__()Object.prototype.__defineSetter__()Object.prototype.__lookupGetter__()Object.prototype.__lookupSetter__()Object.prototype.hasOwnProperty()Object.prototype.isPrototypeOf()Object.prototype.propertyIsEnumerable()Object.prototype.toLocaleString()Object.prototype.toString()Object.prototype.valueOf()AggregateErrorEvalErrorRangeErrorReferenceErrorSyntaxErrorTypeErrorURIErrorYour blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |