作者:xie392地址:https://v.douyin.com/iexAbdge/更新时间:2024-12-21
1const names = ['郭德纲', '岳云鹏', '孙越', '曹操', '刘云涛']23names.sort((a, b) => {4return a.localeCompare(b)5})67console.log(names) // [ '曹操', '郭德纲', '刘云涛', '孙越', '岳云鹏' ]
输出结果:
1[ '曹操', '郭德纲', '刘云涛', '孙越', '岳云鹏' ]