The TypeError
object represents an error when a value is not of the expected type.
new TypeError([message[, fileName[, lineNumber]]])
message
fileName
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.prototype
TypeError
object.The global TypeError
contains no methods of its own, however, it does inherit some methods through the prototype chain.
TypeError
instancesTypeError.prototype.constructor
TypeError.prototype.message
TypeError
should provide its own message
property, in SpiderMonkey, it inherits Error.prototype.message
.TypeError.prototype.name
Error
.TypeError.prototype.fileName
Error
.TypeError.prototype.lineNumber
Error
.TypeError.prototype.columnNumber
Error
.TypeError.prototype.stack
Error
.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" }
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
© 2005–2017 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