Error.prototype.message - JavaScript 编辑
The message
property is a human-readable description of the error.
Description
This property contains a brief description of the error if one is available or has been set. SpiderMonkey makes extensive use of the message
property for exceptions. The message
property combined with the name
property is used by the Error.prototype.toString()
method to create a string representation of the Error.
By default, the message
property is an empty string, but this behavior can be overridden for an instance by specifying a message as the first argument to the Error
constructor.
Examples
Throwing a custom error
var e = new Error('Could not parse input');
// e.message is 'Could not parse input'
throw e;
Specifications
Specification |
---|
ECMAScript (ECMA-262) The definition of 'Error.prototype.message' in that specification. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论