ErrorEvent: error property
Note: This feature is available in Web Workers.
The error
read-only property of the ErrorEvent
interface returns a JavaScript value, such as an Error
or DOMException
, representing the error associated with this event.
Value
Any valid JavaScript value.
Examples
js
window.addEventListener("error", (ev) => {
console.log("The error instance: " + ev.error);
});
Specifications
Specification |
---|
HTML # dom-errorevent-error |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | server | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
error |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.