Note: This feature is available in Web Workers.
The message read-only property of the ErrorEvent interface returns a string containing a human-readable error message describing the problem.
A string.
window.addEventListener("error", (ev) => {
console.log(`The error message: ${ev.message}`);
});