Array常用方法
阿新 • • 發佈:2017-09-27
cond 一個 常用方法 array .cn 分享 sort return element
1.join() 將數組轉為字符串
2.pop() 刪除數組的最後一個;push()向數組最後添加新元素,返回新數組的長度
3.shift()刪除數組的第一個元素;unshift()向數組的最前面插入一個元素,並返回新數組的長度
4.splice() 向數組添加元素
The first parameter (2) defines the position where new elements should be added (spliced in).
The second parameter (0) defines how many elements should be removed.
The rest of the parameters ("Lemon" , "Kiwi") define the new elements to be added.
5.concat() 合並數組,並返回新數組,原數組不變
6.slice() 切割指定字符,並返回新數組
7.sort() 將數組進行排序
數組隨機分布:
var points = [40, 100, 1, 5, 25, 10];
points.sort(function(a, b){return 0.5 - Math.random()});
8.reverse(),實現數組的反轉
Array常用方法