IE11中用于排序功能的Javascript语法错误

时间:2017-12-06 15:42:09

标签: javascript sorting internet-explorer

我正在使用Javascript对数组进行排序,它在Chrome,Firefox,Safari中工作正常但在IE11中我收到语法错误。有人知道是什么原因引起的吗?这是我的排序功能:

arr.sort((a, b) => b - a);

1 个答案:

答案 0 :(得分:1)

Internet Explorer 11不支持ES2015功能Arrow Functions

使用function或将BabelTypeScript等转录程序合并到您的工具链中。

Your code as transpiled by Babel

Your code as transpiled by TypeScript