| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/EvalError | [Back] [Original] |
Get to know MDN better
EvalError eval() JavaScript EvalError
EvalError structuredClone() postMessage()
EvalError Error
EvalError() EvalError
EvalError.prototype EvalError
EvalError.prototype.constructorEvalError EvalError
EvalError.prototype.nameEvalError.prototype.name "EvalError"
try {
throw new EvalError("Hello");
} catch (e) {
console.log(e instanceof EvalError); // true
console.log(e.message); // "Hello"
console.log(e.name); // "EvalError"
console.log(e.stack); //
}
| ECMAScript 2027 LanguageSpecification # sec-native-error-types-used-in-this-standard-evalerror |
| Web Proxy Viewer | New URL | Original Page |