迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > TypeScript >

在 TypeScript 中使用索引遍历数组

作者:迹忆客 最近更新:2023/05/09 浏览次数:

使用 forEach() 方法迭代具有索引的数组,例如 arr.forEach((element, index) => {})。 回调函数采用的第二个参数是数组中元素的索引。

const arr: string[] = ['one', 'two', 'three'];

arr.forEach((element, index) => {
  // 👇️ one 0, two 1, three 2
  console.log(element, index);
});

TypeScript 中使用索引遍历数组

我们传递给 Array.forEach 方法的函数会针对数组中的每个元素进行调用。

回调函数传递以下 3 个参数:

  1. 数组中的当前元素。
  2. 数组中元素的索引。
  3. 我们调用 forEach() 方法的数组。

forEach 方法返回 undefined,因此它用于改变外部变量。

如果我们需要使用索引遍历数组,但每次迭代都返回一个值,请改用 Array.map 方法。

const arr: string[] = ['one', 'two', 'three'];

const result = arr.map((element, index) => {
  return element + index;
});

// 👇️ ['one0', 'two1', 'three2']
console.log(result);

typescript array map 方法遍历数组

我们传递给 map() 方法的函数会调用数组中的每个元素,并传递与 forEach() 相同的参数。

map() 方法返回一个新数组,其中包含我们从回调函数返回的元素。

使用 forEach() 方法时需要注意的一件重要事情是 - 我们不能使用 break 关键字来跳出循环。

如果在满足条件时必须使用 break 关键字跳出循环,请改用基本的 for 循环。

const arr: string[] = ['one', 'two', 'three'];

for (let index = 0; index < arr.length; index++) {
  // 👇️ one 0, two 1
  console.log(arr[index], index);

  if (index === 1) {
    break;
  }
}

TypeScript 中for使用索引遍历数组

基本的 for 循环并不像使用 forEach() 那样优雅,但使我们能够使用 break 关键字在满足条件时跳出循环。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 TypeScript 中返回一个 Promise

发布时间:2023/03/19 浏览次数:182 分类:TypeScript

本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便