Note: This feature is available in Web Workers.
The colno read-only property of the ErrorEvent interface returns an integer containing the column number of the script file on which the error occurred.
An integer.
window.addEventListener("error", (ev) => {
console.log(`The error occur in column: ${ev.colno}`);
});