JavaScript數組經常使用操做方法

ES5操做數組的方法

一、concat()

concat() 方法用於鏈接兩個或多個數組。該方法不會改變現有的數組,僅會返回被鏈接數組的一個副本。html

  1. var arr1 = [1,2,3];數組

  2. var arr2 = [4,5];app

  3. var arr3 = arr1.concat(arr2);函數

  4. console.log(arr1); //[1, 2, 3]post

  5. console.log(arr3); //[1, 2, 3, 4, 5]ui

二、join()

join() 方法用於把數組中的全部元素放入一個字符串。元素是經過指定的分隔符進行分隔的,默認使用','號分割,不改變原數組。spa

  1. var arr = [2,3,4];code

  2. console.log(arr.join());  //2,3,4htm

  3. console.log(arr);  //[2, 3, 4]對象

三、push()

push() 方法可向數組的末尾添加一個或多個元素,並返回新的長度。末尾添加,返回的是長度,會改變原數組。

  1. var a = [2,3,4];

  2. var b = a.push(5);

  3. console.log(a);  //[2,3,4,5]

  4. console.log(b);  //4

  5. push方法能夠一次添加多個元素push(data1,data2....)

四、pop()

pop() 方法用於刪除並返回數組的最後一個元素。返回最後一個元素,會改變原數組。

  1. var arr = [2,3,4];

  2. console.log(arr.pop()); //4

  3. console.log(arr);  //[2,3]

五、shift()

shift() 方法用於把數組的第一個元素從其中刪除,並返回第一個元素的值。返回第一個元素,改變原數組。

  1. var arr = [2,3,4];

  2. console.log(arr.shift()); //2

  3. console.log(arr);  //[3,4]

六、unshift()

unshift() 方法可向數組的開頭添加一個或更多元素,並返回新的長度。返回新長度,改變原數組。

  1. var arr = [2,3,4,5];

  2. console.log(arr.unshift(3,6)); //6

  3. console.log(arr); //[3, 6, 2, 3, 4, 5]

  4. tip:該方法能夠不傳參數,不傳參數就是不增長元素。

七、slice()

返回一個新的數組,包含從 start 到 end (不包括該元素)的 arrayObject 中的元素。返回選定的元素,該方法不會修改原數組。

  1. var arr = [2,3,4,5];

  2. console.log(arr.slice(1,3));  //[3,4]

  3. console.log(arr);  //[2,3,4,5]

八、splice()

splice() 方法可刪除從 index 處開始的零個或多個元素,而且用參數列表中聲明的一個或多個值來替換那些被刪除的元素。若是從 arrayObject 中刪除了元素,則返回的是含有被刪除的元素的數組。splice() 方法會直接對數組進行修改。

  1. var a = [5,6,7,8];

  2. console.log(a.splice(1,0,9)); //[]

  3. console.log(a);  // [5, 9, 6, 7, 8]

  4. var b = [5,6,7,8];

  5. console.log(b.splice(1,2,3));  //[6, 7]

  6. console.log(b); //[5, 3, 8]

九、substring() 和 substr()

相同點:若是隻是寫一個參數,二者的做用都同樣:都是是截取字符串從當前下標之後直到字符串最後的字符串片斷。
substr(startIndex);
substring(startIndex);

  1. var str = '123456789';

  2. console.log(str.substr(2));    //  "3456789"

  3. console.log(str.substring(2)) ;//  "3456789"

不一樣點:第二個參數
substr(startIndex,lenth): 第二個參數是截取字符串的長度(從起始點截取某個長度的字符串);
substring(startIndex, endIndex): 第二個參數是截取字符串最終的下標 (截取2個位置之間的字符串,‘含頭不含尾’)。

  1. console.log("123456789".substr(2,5));    //  "34567"

  2. console.log("123456789".substring(2,5)) ;//  "345"

十、sort 排序

按照 Unicode code 位置排序,默認升序

  1. var fruit = ['cherries', 'apples', 'bananas'];

  2. fruit.sort(); // ['apples', 'bananas', 'cherries']

  3.  

  4. var scores = [1, 10, 21, 2];

  5. scores.sort(); // [1, 10, 2, 21]

十一、reverse()

reverse() 方法用於顛倒數組中元素的順序。返回的是顛倒後的數組,會改變原數組。

  1. var arr = [2,3,4];

  2. console.log(arr.reverse()); //[4, 3, 2]

  3. console.log(arr);  //[4, 3, 2]

十二、indexOf 和 lastIndexOf

都接受兩個參數:查找的值、查找起始位置
不存在,返回 -1 ;存在,返回位置。indexOf 是從前日後查找, lastIndexOf 是從後往前查找。
indexOf

  1. var a = [2, 9, 9];

  2. a.indexOf(2); // 0

  3. a.indexOf(7); // -1

  4.  

  5. if (a.indexOf(7) === -1) {

  6.  // element doesn't exist in array

  7. }

lastIndexOf

  1. var numbers = [2, 5, 9, 2];

  2. numbers.lastIndexOf(2);     // 3

  3. numbers.lastIndexOf(7);     // -1

  4. numbers.lastIndexOf(2, 3);  // 3

  5. numbers.lastIndexOf(2, 2);  // 0

  6. numbers.lastIndexOf(2, -2); // 0

  7. numbers.lastIndexOf(2, -1); // 3

1三、every

對數組的每一項都運行給定的函數,每一項都返回 ture,則返回 true

  1. function isBigEnough(element, index, array) {

  2.  return element < 10;

  3. }    

  4. [2, 5, 8, 3, 4].every(isBigEnough);   // true

1四、some

對數組的每一項都運行給定的函數,任意一項都返回 ture,則返回 true

  1. function compare(element, index, array) {

  2.  return element > 10;

  3. }    

  4. [2, 5, 8, 1, 4].some(compare);  // false

  5. [12, 5, 8, 1, 4].some(compare); // true

1五、filter

對數組的每一項都運行給定的函數,返回 結果爲 ture 的項組成的數組

  1. var words = ["spray", "limit", "elite", "exuberant", "destruction", "present", "happy"];

  2.  

  3. var longWords = words.filter(function(word){

  4.  return word.length > 6;

  5. });

  6. // Filtered array longWords is ["exuberant", "destruction", "present"]

1六、map

對數組的每一項都運行給定的函數,返回每次函數調用的結果組成一個新數組

  1. var numbers = [1, 5, 10, 15];

  2. var doubles = numbers.map(function(x) {

  3.   return x * 2;

  4. });

  5. // doubles is now [2, 10, 20, 30]

  6. // numbers is still [1, 5, 10, 15]

1七、forEach 數組遍歷

  1. const items = ['item1', 'item2', 'item3'];

  2. const copy = [];    

  3. items.forEach(function(item){

  4.  copy.push(item)

  5. });

ES6新增新操做數組的方法

一、find():

傳入一個回調函數,找到數組中符合當前搜索規則的第一個元素,返回它,而且終止搜索。

  1. const arr = [1, "2", 3, 3, "2"]

  2. console.log(arr.find(n => typeof n === "number")) // 1

二、findIndex():

傳入一個回調函數,找到數組中符合當前搜索規則的第一個元素,返回它的下標,終止搜索。

  1. const arr = [1, "2", 3, 3, "2"]

  2. console.log(arr.findIndex(n => typeof n === "number")) // 0

三、fill():

用新元素替換掉數組內的元素,能夠指定替換下標範圍。

  1. arr.fill(value, start, end)

四、copyWithin():

選擇數組的某個下標,從該位置開始複製數組元素,默認從0開始複製。也能夠指定要複製的元素範圍。

  1. arr.copyWithin(target, start, end)

  2. const arr = [1, 2, 3, 4, 5]

  3. console.log(arr.copyWithin(3))

  4. // [1,2,3,1,2] 從下標爲3的元素開始,複製數組,因此4, 5被替換成1, 2

  5. const arr1 = [1, 2, 3, 4, 5]

  6. console.log(arr1.copyWithin(3, 1))

  7. // [1,2,3,2,3] 從下標爲3的元素開始,複製數組,指定複製的第一個元素下標爲1,因此4, 5被替換成2, 3

  8. const arr2 = [1, 2, 3, 4, 5]

  9. console.log(arr2.copyWithin(3, 1, 2))

  10. // [1,2,3,2,5] 從下標爲3的元素開始,複製數組,指定複製的第一個元素下標爲1,結束位置爲2,因此4被替換成2

五、from

將相似數組的對象(array-like object)和可遍歷(iterable)的對象轉爲真正的數組

  1. const bar = ["a", "b", "c"];

  2. Array.from(bar);

  3. // ["a", "b", "c"]

  4.  

  5. Array.from('foo');

  6. // ["f", "o", "o"]

六、of

用於將一組值,轉換爲數組。這個方法的主要目的,是彌補數組構造函數 Array() 的不足。由於參數個數的不一樣,會致使 Array() 的行爲有差別。

  1. Array() // []

  2. Array(3) // [, , ,]

  3. Array(3, 11, 8) // [3, 11, 8]

  4. Array.of(7);       // [7]

  5. Array.of(1, 2, 3); // [1, 2, 3]

  6.  

  7. Array(7);          // [ , , , , , , ]

  8. Array(1, 2, 3);    // [1, 2, 3]

七、entries() 返回迭代器:返回鍵值對

  1. //數組

  2. const arr = ['a', 'b', 'c'];

  3. for(let v of arr.entries()) {

  4.  console.log(v)

  5. }

  6. // [0, 'a'] [1, 'b'] [2, 'c']

  7.  

  8. //Set

  9. const arr = new Set(['a', 'b', 'c']);

  10. for(let v of arr.entries()) {

  11.  console.log(v)

  12. }

  13. // ['a', 'a'] ['b', 'b'] ['c', 'c']

  14.  

  15. //Map

  16. const arr = new Map();

  17. arr.set('a', 'a');

  18. arr.set('b', 'b');

  19. for(let v of arr.entries()) {

  20.  console.log(v)

  21. }

  22. // ['a', 'a'] ['b', 'b']

八、values() 返回迭代器:返回鍵值對的value

  1. //數組

  2. const arr = ['a', 'b', 'c'];

  3. for(let v of arr.values()) {

  4.  console.log(v)

  5. }

  6. //'a' 'b' 'c'

  7.  

  8. //Set

  9. const arr = new Set(['a', 'b', 'c']);

  10. for(let v of arr.values()) {

  11.  console.log(v)

  12. }

  13. // 'a' 'b' 'c'

  14.  

  15. //Map

  16. const arr = new Map();

  17. arr.set('a', 'a');

  18. arr.set('b', 'b');

  19. for(let v of arr.values()) {

  20.  console.log(v)

  21. }

  22. // 'a' 'b'

九、keys() 返回迭代器:返回鍵值對的key

  1. //數組

  2. const arr = ['a', 'b', 'c'];

  3. for(let v of arr.keys()) {

  4.  console.log(v)

  5. }

  6. // 0 1 2

  7.  

  8. //Set

  9. const arr = new Set(['a', 'b', 'c']);

  10. for(let v of arr.keys()) {

  11.  console.log(v)

  12. }

  13. // 'a' 'b' 'c'

  14.  

  15. //Map

  16. const arr = new Map();

  17. arr.set('a', 'a');

  18. arr.set('b', 'b');

  19. for(let v of arr.keys()) {

  20.  console.log(v)

  21. }

  22. // 'a' 'b'

十、includes

判斷數組中是否存在該元素,參數:查找的值、起始位置,能夠替換 ES5 時代的 indexOf 判斷方式。indexOf 判斷元素是否爲 NaN,會判斷錯誤。

  1. var a = [1, 2, 3];

  2. a.includes(2); // true

  3. a.includes(4); // false

END

 

出處:http://www.javashuo.com/article/p-checlzus-y.html

相關文章
相關標籤/搜索