根据汉字首字母a---z进行排序
let arry = ['周浩','李媛','王五','安妮'] arry.sort(function(a,b){ return a.localeCompare(b) }) console.log(arry)
["安妮", "李媛", "王五", "周浩"]
根据汉字首字母a---z进行排序
let arry = ['周浩','李媛','王五','安妮'] arry.sort(function(a,b){ return a.localeCompare(b) }) console.log(arry)
["安妮", "李媛", "王五", "周浩"]
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。