The TypeError object represents an error when a value is not of the expected type.
new TypeError([message[, fileName[, lineNumber]]])
messagefileName
lineNumber
A TypeError is thrown when an operand or argument passed to a function is incompatible with the type expected by that operator or function.
TypeError.prototypeTypeError object.The global TypeError contains no methods of its own, however, it does inherit some methods through the prototype chain.
TypeError instancesTypeError.prototype.constructorTypeError.prototype.messageTypeError should provide its own message property, in SpiderMonkey, it inherits Error.prototype.message.TypeError.prototype.nameError.TypeError.prototype.fileNameError.TypeError.prototype.lineNumberError.TypeError.prototype.columnNumberError.TypeError.prototype.stackError.Although the TypeError prototype object does not contain any methods of its own, TypeError instances do inherit some methods through the prototype chain.
TypeError
try {
null.f();
} catch (e) {
console.log(e instanceof TypeError); // true
console.log(e.message); // "null has no properties"
console.log(e.name); // "TypeError"
console.log(e.fileName); // "Scratchpad/1"
console.log(e.lineNumber); // 2
console.log(e.columnNumber); // 2
console.log(e.stack); // "@Scratchpad/2:2:3\n"
}
TypeError
try {
throw new TypeError('Hello', "someFile.js", 10);
} catch (e) {
console.log(e instanceof TypeError); // true
console.log(e.message); // "Hello"
console.log(e.name); // "TypeError"
console.log(e.fileName); // "someFile.js"
console.log(e.lineNumber); // 10
console.log(e.columnNumber); // 0
console.log(e.stack); // "@Scratchpad/2:2:9\n"
}
| Specification | Status | Comment |
|---|---|---|
| ECMAScript 3rd Edition (ECMA-262) The definition of 'TypeError' in that specification. | Standard | Initial definition |
| ECMAScript 5.1 (ECMA-262) The definition of 'TypeError' in that specification. | Standard | |
| ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'TypeError' in that specification. | Standard | |
| ECMAScript Latest Draft (ECMA-262) The definition of 'TypeError' in that specification. | Living Standard |
| Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | Yes | Yes | Yes | Yes | Yes | Yes |
| Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
|---|---|---|---|---|---|---|---|
| Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError