Home  >  Article  >  Web Front-end  >  JavaScript sorts Chinese codes according to pinyin_javascript skills

JavaScript sorts Chinese codes according to pinyin_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:39:121335browse

Today, I used the code to sort Chinese characters according to pinyin. After consulting the experts in the group, I got the following code:

var arr = ["张三","李四","王五","阿三"]; 
document.write(arr+"<br/>"); 
arr.sort(function(a,b){ 
return a.localeCompare(b); 
}); 
document.write(arr);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn