Error.prototype.columnNumber

非标准
该特性是非标准的,请尽量不要在生产环境中使用它!

columnNumber属性包含引发此错误的文件行中的列号。

例子

使用 columnNumber

var e = new Error('Could not parse input');
throw e;
console.log(e.columnNumber) // 0

规范

不属于任何规范的一部分. 非标准.

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本支持 未实现 (Yes) 未实现 未实现 未实现
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本支持 未实现 未实现 (Yes) 未实现 未实现 未实现

相关链接