中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

es6遍歷數組的方法有哪些

es6
小億
108
2023-10-25 20:26:13
欄目: 編程語言

ES6中遍歷數組的方法有以下幾種:

  1. for…of循環:通過for…of循環可以依次遍歷數組中的每個元素。例如:
const arr = [1, 2, 3];
for (let element of arr) {
  console.log(element);
}
  1. forEach方法:通過數組的forEach方法可以對數組中的每個元素執行一個回調函數。例如:
const arr = [1, 2, 3];
arr.forEach(function(element) {
  console.log(element);
});
  1. map方法:通過數組的map方法可以對數組中的每個元素執行一個回調函數,并返回一個新的數組。例如:
const arr = [1, 2, 3];
const newArr = arr.map(function(element) {
  return element * 2;
});
console.log(newArr); // [2, 4, 6]
  1. filter方法:通過數組的filter方法可以對數組中的每個元素執行一個回調函數,并返回一個滿足條件的新的數組。例如:
const arr = [1, 2, 3, 4, 5];
const newArr = arr.filter(function(element) {
  return element % 2 === 0;
});
console.log(newArr); // [2, 4]
  1. reduce方法:通過數組的reduce方法可以將數組中的每個元素執行一個回調函數,并將結果累計到一個值上。例如:
const arr = [1, 2, 3, 4, 5];
const sum = arr.reduce(function(accumulator, currentValue) {
  return accumulator + currentValue;
}, 0);
console.log(sum); // 15
  1. find方法:通過數組的find方法可以找到數組中滿足條件的第一個元素。例如:
const arr = [1, 2, 3, 4, 5];
const result = arr.find(function(element) {
  return element > 3;
});
console.log(result); // 4
  1. findIndex方法:通過數組的findIndex方法可以找到數組中滿足條件的第一個元素的索引。例如:
const arr = [1, 2, 3, 4, 5];
const index = arr.findIndex(function(element) {
  return element > 3;
});
console.log(index); // 3
  1. some方法:通過數組的some方法可以判斷數組中是否存在滿足條件的元素。例如:
const arr = [1, 2, 3, 4, 5];
const result = arr.some(function(element) {
  return element > 3;
});
console.log(result); // true
  1. every方法:通過數組的every方法可以判斷數組中的所有元素是否都滿足條件。例如:
const arr = [1, 2, 3, 4, 5];
const result = arr.every(function(element) {
  return element > 0;
});
console.log(result); // true

0
延寿县| 滨州市| 合山市| 沁阳市| 遂宁市| 临夏县| 手机| 隆安县| 荥阳市| 卢湾区| 广平县| 仁寿县| 牡丹江市| 高陵县| 海盐县| 兴文县| 肥乡县| 鄂托克前旗| 淄博市| 广元市| 临沧市| 洛浦县| 沙河市| 翼城县| 汽车| 若羌县| 手机| 阳曲县| 张掖市| 洛南县| 黑水县| 鄂州市| 休宁县| 井陉县| 乳源| 荥经县| 长沙市| 突泉县| 贞丰县| 永城市| 盈江县|