1. 程式人生 > >Array常用方法

Array常用方法

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常用方法