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的比较?

clipboard.png

阅读 3.8k
3 个回答

先比较第一个字母,如果第一个字母一样,就比较第二个字母,然后以此类推

字典序依次顺序比较
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);

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题