Error.prototype.columnNumber

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

Error 实例的 columnNumber 数据属性包含引发此错误的文件行中的列号。

正整数。

Error.prototype.columnNumber 的属性特性
可写
可枚举
可配置

示例

使用 columnNumber

js
try {
  throw new Error("无法解析输入");
} catch (err) {
  console.log(err.columnNumber); // 9
}

规范

不属于任何规范。

浏览器兼容性

BCD tables only load in the browser

参见