web api instance property
ErrorEvent: lineno property
Available in workers
The lineno read-only property of the ErrorEvent interface returns an integer containing the line number of the script file on which the error occurred.
Value
An integer.
Examples
window.addEventListener("error", (ev) => {
console.log(`The error occur in line: ${ev.lineno}`);
});
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.