编码顺序和字典顺序

作者:xie392地址:https://v.douyin.com/iexAbdge/更新时间:2024-12-21

案例代码

1
const names = ['郭德纲', '岳云鹏', '孙越', '曹操', '刘云涛']
2
3
names.sort((a, b) => {
4
return a.localeCompare(b)
5
})
6
7
console.log(names) // [ '曹操', '郭德纲', '刘云涛', '孙越', '岳云鹏' ]

输出结果:

1
[ '曹操', '郭德纲', '刘云涛', '孙越', '岳云鹏' ]