当前位置:   article > 正文

JS中操作数组的方法(全)_js 数组操作

js 数组操作

目录

1.Array.of()

2.Array.prototype.pop()

3.Array.prototype.push()

4.Array.prototype.reduce()

5.Array.prototype.reduceRight()

6.Array.prototype.reverse()

7.Array.prototype.shift()

8.Array.prototype.slice()

9.Array.prototype.some()

10.Array.prototype.sort()

11.Array.prototype.splice()

12.Array.prototype.toLocaleString()

13.Array.prototype.toReversed()

14.Array.prototype.toSorted()

15. Array.prototype.toSpliced()

16. Array.prototype.toString()

 17.Array.prototype.unshift()

18.Array.prototype.at()

19.Array.prototype.concat()

 20.Array.prototype.copyWithin()

 21.Array.prototype.entries()

 22.Array.prototype.every()

 23.Array.prototype.fill()

24.Array.prototype.filter()

25.Array.prototype.find()

26.Array.prototype.findIndex()

27.Array.prototype.findLast()

28.Array.prototype.findLastIndex()

29.Array.prototype.flat()

30.Array.prototype.flatMap()

31.Array.prototype.forEach()

32.Array.from()

33.Array.prototype.indexOf()

34.Array.isArray()

35.Array.prototype.join()

36.Array.prototype.keys()

37.Array.prototype.map()


1.Array.of()

Array.of() 静态方法通过可变数量的参数创建一个新的 Array 实例,而不考虑参数的数量或类型。

  1. console.log(Array.of('foo', 2, 'bar', true));
  2. // Expected output: Array ["foo", 2, "bar", true]
  3. console.log(Array.of());
  4. // Expected output: Array []

2.Array.prototype.pop()

pop() 方法从数组中删除最后一个元素,并返回该元素的值。此方法会更改数组的长度。

  1. const plants = ['broccoli', 'cauliflower', 'cabbage', 'kale', 'tomato'];
  2. console.log(plants.pop());
  3. // Expected output: "tomato"
  4. console.log(plants);
  5. // Expected output: Array ["broccoli", "cauliflower", "cabbage", "kale"]
  6. plants.pop();
  7. console.log(plants);
  8. // Expected output: Array ["broccoli", "cauliflower", "cabbage"]

3.Array.prototype.push()

push() 方法将指定的元素添加到数组的末尾,并返回新的数组长度。

  1. const animals = ['pigs', 'goats', 'sheep'];
  2. const count = animals.push('cows');
  3. console.log(count);
  4. // Expected output: 4
  5. console.log(animals);
  6. // Expected output: Array ["pigs", "goats", "sheep", "cows"]
  7. animals.push('chickens', 'cats', 'dogs');
  8. console.log(animals);
  9. // Expected output: Array ["pigs", "goats", "sheep", "cows", "chickens", "cats", "dogs"]

4.Array.prototype.reduce()

reduce() 方法对数组中的每个元素按序执行一个提供的 reducer 函数,每一次运行 reducer 会将先前元素的计算结果作为参数传入,最后将其结果汇总为单个返回值。

第一次执行回调函数时,不存在“上一次的计算结果”。如果需要回调函数从数组索引为 0 的元素开始执行,则需要传递初始值。否则,数组索引为 0 的元素将被用作初始值,迭代器将从第二个元素开始执行(即从索引为 1 而不是 0 的位置开始)。

下面的例子能够帮助你理解 reduce() 的用处——计算数组所有元素的总和:

  1. const array1 = [1, 2, 3, 4];
  2. // 0 + 1 + 2 + 3 + 4
  3. const initialValue = 0;
  4. const sumWithInitial = array1.reduce(
  5. (accumulator, currentValue) => accumulator + currentValue,
  6. initialValue
  7. );
  8. console.log(sumWithInitial);
  9. // Expected output: 10

5.Array.prototype.reduceRight()

reduceRight() 方法对累加器(accumulator)和数组的每个值(按从右到左的顺序)应用一个函数,并使其成为单个值。

对于从左至右遍历的相似方法,请参阅 Array.prototype.reduce()

  1. const array1 = [[0, 1], [2, 3], [4, 5]];
  2. const result = array1.reduceRight((accumulator, currentValue) => accumulator.concat(currentValue));
  3. console.log(result);
  4. // Expected output: Array [4, 5, 2, 3, 0, 1]

6.Array.prototype.reverse()

reverse() 方法就地反转数组中的元素,并返回同一数组的引用。数组的第一个元素会变成最后一个,数组的最后一个元素变成第一个。换句话说,数组中的元素顺序将被翻转,变为与之前相反的方向。

要在不改变原始数组的情况下反转数组中的元素,使用 toReversed()

  1. const array1 = ['one', 'two', 'three'];
  2. console.log('array1:', array1);
  3. // Expected output: "array1:" Array ["one", "two", "three"]
  4. const reversed = array1.reverse();
  5. console.log('reversed:', reversed);
  6. // Expected output: "reversed:" Array ["three", "two", "one"]
  7. // Careful: reverse is destructive -- it changes the original array.
  8. console.log('array1:', array1);
  9. // Expected output: "array1:" Array ["three", "two", "one"]

7.Array.prototype.shift()

shift() 方法从数组中删除第一个元素,并返回该元素的值。此方法更改数组的长度。

  1. const array1 = [1, 2, 3];
  2. const firstElement = array1.shift();
  3. console.log(array1);
  4. // Expected output: Array [2, 3]
  5. console.log(firstElement);
  6. // Expected output: 1

8.Array.prototype.slice()

slice() 方法返回一个新的数组对象,这一对象是一个由 start 和 end 决定的原数组的浅拷贝(包括 start,不包括 end),其中 start 和 end 代表了数组元素的索引。原始数组不会被改变。

  1. const animals = ['ant', 'bison', 'camel', 'duck', 'elephant'];
  2. console.log(animals.slice(2));
  3. // Expected output: Array ["camel", "duck", "elephant"]
  4. console.log(animals.slice(2, 4));
  5. // Expected output: Array ["camel", "duck"]
  6. console.log(animals.slice(1, 5));
  7. // Expected output: Array ["bison", "camel", "duck", "elephant"]
  8. console.log(animals.slice(-2));
  9. // Expected output: Array ["duck", "elephant"]
  10. console.log(animals.slice(2, -1));
  11. // Expected output: Array ["camel", "duck"]
  12. console.log(animals.slice());
  13. // Expected output: Array ["ant", "bison", "camel", "duck", "elephant"]

9.Array.prototype.some()

some() 方法测试数组中是否至少有一个元素通过了由提供的函数实现的测试。如果在数组中找到一个元素使得提供的函数返回 true,则返回 true;否则返回 false。它不会修改数组。

  1. const array = [1, 2, 3, 4, 5];
  2. // Checks whether an element is even
  3. const even = (element) => element % 2 === 0;
  4. console.log(array.some(even));
  5. // Expected output: true

10.Array.prototype.sort()

sort() 方法就地对数组的元素进行排序,并返回对相同数组的引用。默认排序是将元素转换为字符串,然后按照它们的 UTF-16 码元值升序排序。

由于它取决于具体实现,因此无法保证排序的时间和空间复杂度。

如果想要不改变原数组的排序方法,可以使用 toSorted()

  1. const months = ['March', 'Jan', 'Feb', 'Dec'];
  2. months.sort();
  3. console.log(months);
  4. // Expected output: Array ["Dec", "Feb", "Jan", "March"]
  5. const array1 = [1, 30, 4, 21, 100000];
  6. array1.sort();
  7. console.log(array1);
  8. // Expected output: Array [1, 100000, 21, 30, 4]

11.Array.prototype.splice()

splice() 方法通过移除或者替换已存在的元素和/或添加新元素就地改变一个数组的内容。

要创建一个删除和/或替换部分内容而不改变原数组的新数组,请使用 toSpliced()。要访问数组的一部分而不修改它,参见 slice()

  1. const months = ['Jan', 'March', 'April', 'June'];
  2. months.splice(1, 0, 'Feb');
  3. // Inserts at index 1
  4. console.log(months);
  5. // Expected output: Array ["Jan", "Feb", "March", "April", "June"]
  6. months.splice(4, 1, 'May');
  7. // Replaces 1 element at index 4
  8. console.log(months);
  9. // Expected output: Array ["Jan", "Feb", "March", "April", "May"]

12.Array.prototype.toLocaleString()

toLocaleString() 方法返回一个字符串,表示数组中的所有元素。每个元素通过调用它们自己的 toLocaleString 方法转换为字符串,并且使用特定于语言环境的字符串(例如逗号“,”)分隔开。

  1. const array1 = [1, 'a', new Date('21 Dec 1997 14:12:00 UTC')];
  2. const localeString = array1.toLocaleString('en', { timeZone: 'UTC' });
  3. console.log(localeString);
  4. // Expected output: "1,a,12/21/1997, 2:12:00 PM",
  5. // This assumes "en" locale and UTC timezone - your results may vary

13.Array.prototype.toReversed()

Array 实例的 toReversed() 方法是 reverse() 方法对应的复制版本。它返回一个元素顺序相反的新数组。

toReversed()

14.Array.prototype.toSorted()

Array 实例的 toSorted() 方法是 sort() 方法的复制方法版本。它返回一个新数组,其元素按升序排列。

  1. // 不传入函数
  2. toSorted()
  3. // 传入箭头函数
  4. toSorted((a, b) => { /**/ })
  5. // 传入比较函数
  6. toSorted(compareFn)
  7. // 內联比较函数
  8. toSorted(function compareFn(a, b) { /**/ })

15. Array.prototype.toSpliced()

Array 实例的 toSpliced() 方法是 splice() 方法的复制版本。它返回一个新数组,并在给定的索引处删除和/或替换了一些元素。

  1. toSpliced(start)
  2. toSpliced(start, deleteCount)
  3. toSpliced(start, deleteCount, item1)
  4. toSpliced(start, deleteCount, item1, item2, itemN)

16. Array.prototype.toString()

toString() 方法返回一个字符串,表示指定的数组及其元素。

  1. const array1 = [1, 2, 'a', '1a'];
  2. console.log(array1.toString());
  3. // Expected output: "1,2,a,1a"

 17.Array.prototype.unshift()

unshift() 方法将指定元素添加到数组的开头,并返回数组的新长度。

  1. const array1 = [1, 2, 3];
  2. console.log(array1.unshift(4, 5));
  3. // Expected output: 5
  4. console.log(array1);
  5. // Expected output: Array [4, 5, 1, 2, 3]

18.Array.prototype.at()

at() 方法接收一个整数值并返回该索引对应的元素,允许正数和负数。负整数从数组中的最后一个元素开始倒数。

  1. const array1 = [5, 12, 8, 130, 44];
  2. let index = 2;
  3. console.log(`Using an index of ${index} the item returned is ${array1.at(index)}`);
  4. // Expected output: "Using an index of 2 the item returned is 8"
  5. index = -2;
  6. console.log(`Using an index of ${index} item returned is ${array1.at(index)}`);
  7. // Expected output: "Using an index of -2 item returned is 130"

19.Array.prototype.concat()

concat() 方法用于合并两个或多个数组。此方法不会更改现有数组,而是返回一个新数组。

  1. const array1 = ['a', 'b', 'c'];
  2. const array2 = ['d', 'e', 'f'];
  3. const array3 = array1.concat(array2);
  4. console.log(array3);
  5. // Expected output: Array ["a", "b", "c", "d", "e", "f"]

 20.Array.prototype.copyWithin()

copyWithin() 方法浅复制数组的一部分到同一数组中的另一个位置,并返回它,不会改变原数组的长度。

  1. const array1 = ['a', 'b', 'c', 'd', 'e'];
  2. // Copy to index 0 the element at index 3
  3. console.log(array1.copyWithin(0, 3, 4));
  4. // Expected output: Array ["d", "b", "c", "d", "e"]
  5. // Copy to index 1 all elements from index 3 to the end
  6. console.log(array1.copyWithin(1, 3));
  7. // Expected output: Array ["d", "d", "e", "d", "e"]

 21.Array.prototype.entries()

entries() 方法返回一个新的数组迭代器 (en-US)对象,该对象包含数组中每个索引的键/值对。

  1. const array1 = ['a', 'b', 'c'];
  2. const iterator1 = array1.entries();
  3. console.log(iterator1.next().value);
  4. // Expected output: Array [0, "a"]
  5. console.log(iterator1.next().value);
  6. // Expected output: Array [1, "b"]

 22.Array.prototype.every()

every() 方法测试一个数组内的所有元素是否都能通过指定函数的测试。它返回一个布尔值。

  1. const isBelowThreshold = (currentValue) => currentValue < 40;
  2. const array1 = [1, 30, 39, 29, 10, 13];
  3. console.log(array1.every(isBelowThreshold));
  4. // Expected output: true

 23.Array.prototype.fill()

fill() 方法用一个固定值填充一个数组中从起始索引(默认为 0)到终止索引(默认为 array.length)内的全部元素。它返回修改后的数组。

  1. const array1 = [1, 2, 3, 4];
  2. // Fill with 0 from position 2 until position 4
  3. console.log(array1.fill(0, 2, 4));
  4. // Expected output: Array [1, 2, 0, 0]
  5. // Fill with 5 from position 1
  6. console.log(array1.fill(5, 1));
  7. // Expected output: Array [1, 5, 5, 5]
  8. console.log(array1.fill(6));
  9. // Expected output: Array [6, 6, 6, 6]

24.Array.prototype.filter()

filter() 方法创建给定数组一部分的浅拷贝,其包含通过所提供函数实现的测试的所有元素。

  1. const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];
  2. const result = words.filter(word => word.length > 6);
  3. console.log(result);
  4. // Expected output: Array ["exuberant", "destruction", "present"]

25.Array.prototype.find()

find() 方法返回数组中满足提供的测试函数的第一个元素的值。否则返回 undefined。如果需要在数组中找到对应元素的索引,请使用 findIndex()。如果需要查找某个值的索引,请使用 Array.prototype.indexOf()。(它类似于 findIndex(),但只是检查每个元素是否与值相等,而不是使用测试函数。)如果需要查找数组中是否存在某个值,请使用 Array.prototype.includes()。同样,它检查每个元素是否与值相等,而不是使用测试函数。如果需要查找是否有元素满足所提供的测试函数,请使用 Array.prototype.some()

  1. const array1 = [5, 12, 8, 130, 44];
  2. const found = array1.find(element => element > 10);
  3. console.log(found);
  4. // Expected output: 12

26.Array.prototype.findIndex()

findIndex() 方法返回数组中满足提供的测试函数的第一个元素的索引。若没有找到对应元素则返回 -1。

另请参阅 find() 方法,它返回满足测试函数的第一个元素(而不是它的索引)。

  1. const array1 = [5, 12, 8, 130, 44];
  2. const isLargeNumber = (element) => element > 13;
  3. console.log(array1.findIndex(isLargeNumber));
  4. // Expected output: 3

27.Array.prototype.findLast()

findLast() 方法反向迭代数组,并返回满足提供的测试函数的第一个元素的值。如果没有找到对应元素,则返回 undefined

如果你需要找到:

  • 第一个匹配的元素,使用 find()
  • 数组中最后一个匹配元素的索引,使用 findLastIndex()
  • 某个值的索引,使用 indexOf()。(它类似于 findIndex(),但是会检查每个元素是否与值相等,而不是使用一个测试函数。)
  • 该数组中是否存在一个值,使用 includes()。同样地,它检查每个元素是否和值相等,而不是使用一个测试函数。
  • 是否有任意一个元素满足提供的测试函数,使用 some()
  1. const array1 = [5, 12, 50, 130, 44];
  2. const found = array1.findLast((element) => element > 45);
  3. console.log(found);
  4. // Expected output: 130

28.Array.prototype.findLastIndex()

findLastIndex() 方法反向迭代数组,并返回满足所提供的测试函数的第一个元素的索引。若没有找到对应元素,则返回 -1。

另请参见 findLast() 方法,该方法返回最后一个满足测试函数的元素的值(而不是它的索引)。

  1. const array1 = [5, 12, 50, 130, 44];
  2. const isLargeNumber = (element) => element > 45;
  3. console.log(array1.findLastIndex(isLargeNumber));
  4. // Expected output: 3
  5. // Index of element with value: 130

29.Array.prototype.flat()

flat() 方法创建一个新的数组,并根据指定深度递归地将所有子数组元素拼接到新的数组中。

  1. const arr1 = [0, 1, 2, [3, 4]];
  2. console.log(arr1.flat());
  3. // Expected output: Array [0, 1, 2, 3, 4]
  4. const arr2 = [0, 1, 2, [[[3, 4]]]];
  5. console.log(arr2.flat(2));
  6. // Expected output: Array [0, 1, 2, Array [3, 4]]

30.Array.prototype.flatMap()

flatMap() 方法对数组中的每个元素应用给定的回调函数,然后将结果展开一级,返回一个新数组。它等价于在调用 map() 方法后再调用深度为 1 的 flat() 方法(arr.map(...args).flat()),但比分别调用这两个方法稍微更高效一些。

  1. const arr1 = [1, 2, 1];
  2. const result = arr1.flatMap((num) => (num === 2 ? [2, 2] : 1));
  3. console.log(result);
  4. // Expected output: Array [1, 2, 2, 1]

31.Array.prototype.forEach()

forEach() 方法对数组的每个元素执行一次给定的函数。

  1. const array1 = ['a', 'b', 'c'];
  2. array1.forEach(element => console.log(element));
  3. // Expected output: "a"
  4. // Expected output: "b"
  5. // Expected output: "c"

32.Array.from()

Array.from() 静态方法从可迭代类数组对象创建一个新的浅拷贝的数组实例。

转换异步的可迭代对象到数组,可以使用 Array.fromAsync()

  1. console.log(Array.from('foo'));
  2. // Expected output: Array ["f", "o", "o"]
  3. console.log(Array.from([1, 2, 3], x => x + x));
  4. // Expected output: Array [2, 4, 6]

33.Array.prototype.indexOf()

indexOf() 方法返回数组中第一次出现给定元素的下标,如果不存在则返回 -1。

  1. const beasts = ['ant', 'bison', 'camel', 'duck', 'bison'];
  2. console.log(beasts.indexOf('bison'));
  3. // Expected output: 1
  4. // Start from index 2
  5. console.log(beasts.indexOf('bison', 2));
  6. // Expected output: 4
  7. console.log(beasts.indexOf('giraffe'));
  8. // Expected output: -1

34.Array.isArray()

Array.isArray() 静态方法用于确定传递的值是否是一个 Array

  1. console.log(Array.isArray([1, 3, 5]));
  2. // Expected output: true
  3. console.log(Array.isArray('[]'));
  4. // Expected output: false
  5. console.log(Array.isArray(new Array(5)));
  6. // Expected output: true
  7. console.log(Array.isArray(new Int16Array([15, 33])));
  8. // Expected output: false

35.Array.prototype.join()

join() 方法将一个数组(或一个类数组对象)的所有元素连接成一个字符串并返回这个字符串,用逗号或指定的分隔符字符串分隔。如果数组只有一个元素,那么将返回该元素而不使用分隔符。

  1. const elements = ['Fire', 'Air', 'Water'];
  2. console.log(elements.join());
  3. // Expected output: "Fire,Air,Water"
  4. console.log(elements.join(''));
  5. // Expected output: "FireAirWater"
  6. console.log(elements.join('-'));
  7. // Expected output: "Fire-Air-Water"

36.Array.prototype.keys()

keys() 方法返回一个新的数组迭代器 (en-US)对象,其中包含数组中每个索引的键。

  1. const array1 = ['a', 'b', 'c'];
  2. const iterator = array1.keys();
  3. for (const key of iterator) {
  4. console.log(key);
  5. }
  6. // Expected output: 0
  7. // Expected output: 1
  8. // Expected output: 2

37.Array.prototype.map()

map() 方法创建一个新数组,这个新数组由原数组中的每个元素都调用一次提供的函数后的返回值组成。

  1. const array1 = [1, 4, 9, 16];
  2. // Pass a function to map
  3. const map1 = array1.map(x => x * 2);
  4. console.log(map1);
  5. // Expected output: Array [2, 8, 18, 32]
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/477010
推荐阅读
相关标签
  

闽ICP备14008679号