标签: javascript sorting internet-explorer
我正在使用Javascript对数组进行排序,它在Chrome,Firefox,Safari中工作正常但在IE11中我收到语法错误。有人知道是什么原因引起的吗?这是我的排序功能:
arr.sort((a, b) => b - a);
答案 0 :(得分:1)
Internet Explorer 11不支持ES2015功能Arrow Functions。
使用function或将Babel或TypeScript等转录程序合并到您的工具链中。
function
Your code as transpiled by Babel
Your code as transpiled by TypeScript