如何使用Array.sort()正确排序数字?
2022-08-30 04:32:30
在多个浏览器中,以下代码无法正确排序数字:
a = new Array();
a.push(10);
a.push(60);
a.push(20);
a.push(30);
a.push(100);
document.write(a.sort())
它将返回 。10,100,20,30,60
有人知道为什么吗?
在多个浏览器中,以下代码无法正确排序数字:
a = new Array();
a.push(10);
a.push(60);
a.push(20);
a.push(30);
a.push(100);
document.write(a.sort())
它将返回 。10,100,20,30,60
有人知道为什么吗?
我尝试过不同的数字,它总是表现得好像0不存在,否则会正确地对数字进行排序。有人知道为什么吗?
你得到了一个词典排序(例如,将对象转换为字符串,并按字典顺序对它们进行排序),这是Javascript中的默认排序行为:
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/sort
array.sort([compareFunction])
参数
比较函数
指定定义排序顺序的函数。如果省略,则数组将根据每个元素的字符串转换按字典顺序(按字典顺序)排序。
在 ECMAscript 规范(通用 Javascript 的规范性参考)ECMA-262,第 3 版,第 15.4.4.11 节中,默认排序顺序是词典,尽管它们不会出来并说出来,而是给出概念排序函数的步骤,该函数在必要时调用给定的比较函数,否则在转换为字符串时比较参数:
13. If the argument comparefn is undefined, go to step 16.
14. Call comparefn with arguments x and y.
15. Return Result(14).
16. Call ToString(x).
17. Call ToString(y).
18. If Result(16) < Result(17), return −1.
19. If Result(16) > Result(17), return 1.
20. Return +0.