Skip to content

Commit

Permalink
Update files/en-us/web/api/errorevent/errorevent/index.md
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Chen <sidachen2003@gmail.com>
  • Loading branch information
skyclouds2001 and Josh-Cena authored Oct 9, 2024
1 parent 14c0a25 commit f71969c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions files/en-us/web/api/errorevent/errorevent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ new ErrorEvent(type, options)
- `options` {{optional_inline}}
- : An object that, _in addition of the properties defined in {{domxref("Event/Event", "Event()")}}_, can have the following properties:
- `message` {{optional_inline}}
- : A string containing a human-readable error message describing the problem. Lacking a [`crossorigin`](/en-US/docs/Web/HTML/Attributes/crossorigin) setting reduces error logging.
- : A string containing a human-readable error message describing the problem.
- `filename` {{optional_inline}}
- : A string containing the name of the script file in which the error occurred.
- `lineno` {{optional_inline}}
- : An `integer` containing the line number of the script file on which the error occurred.
- : An integer containing the line number of the script file on which the error occurred.
- `colno` {{optional_inline}}
- : An `integer` containing the column number of the script file on which the error occurred.
- : An integer containing the column number of the script file on which the error occurred.
- `error` {{optional_inline}}
- : A JavaScript `Object` that is concerned by the event.
- : A JavaScript value, such as an {{jsxref("Error")}} or {{domxref("DOMException")}}, representing the error associated with this event.

### Return value

Expand Down

0 comments on commit f71969c

Please sign in to comment.