js array sort 排序规则是什么?
var stringArray = ["Blue", "Humpback", "Beluga"];
stringArray.sort() // ["Beluga", "Blue", "Humpback"]
为什么Beluga排在了Blue的前面,sort是按照code point排序的,但是Beluga跟Blue和B的code point都是一样的,如下图,难道sort还进行了第二个字母的code point的比较?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
先比较第一个字母,如果第一个字母一样,就比较第二个字母,然后以此类推
sort()按照ASCII码进行排序
ASCII码对照表
字典序依次顺序比较
The sort() method sorts the elements of an array in place and returns the array. The default sort order is built upon converting the elements into strings, then comparing their sequences of UTF-16 code units values.
也可以自定义比较函数
var numbers = [4, 2, 5, 1, 3];
numbers.sort(function(a, b) {
return a - b;
});
console.log(numbers);