TypeScript(TS)JavaScript(JS)中的所有循环方法

  1. for循环:
for (let i = 0; i < array.length; i++) {
  // 循环体
}
  1. for…of循环:
for (const element of array) {
  // 循环体
}
  1. forEach方法:
array.forEach((element) => {
  // 循环体
});
  1. map方法:
const newArray = array.map((element) => {
  // 对每个元素进行处理并返回新的数组元素
  return transformedElement;
});
  1. filter方法:
const filteredArray = array.filter((element) => {
  // 根据条件过滤数组元素
  return condition;
});
  1. reduce方法:
const result = array.reduce((accumulator, element) => {
  // 通过迭代计算得到累加结果
  return updatedAccumulator;
}, initialValue);
posted @ 2023-08-24 22:38  LuoCore  阅读(568)  评论(0编辑  收藏  举报