JS sort函數(按照首字母字符排序)

直接調用sort的排序是按照首字母的大小來從小到大進行排列的 var myArry = ['b', 'c' ,'a'] console.log(myArry.sort()) // [ 'a', 'b', 'c' ] var myArry = ['1', '3' ,'2'] console.log(myArry.sort()) // [ '1', '2', '3' ] var myArry
相關文章
相關標籤/搜索