我使用ES6箭头函数在IE中出现语法错误

时间:2018-03-23 12:08:53

标签: javascript internet-explorer

我有这个JavaScript代码

const numberWithCommas = (x) => { return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ".");}

这在Firefox和Chrome中运行良好,但IE给我一个指向=>的语法错误在我的代码中。

有没有办法在IE中使用ES6箭头语法?

0 个答案:

没有答案