当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


TypeScript Array.from()用法及代码示例


TypeScript`Array.from()` 方法是一种通用方法,可将类似数组或可迭代对象转换为实际数组。它允许从具有长度属性或可迭代结构的对象创建数组,从而简化了转换过程。

此方法对于处理需要数组操作的数据集合特别有用,提供了一种方便而简洁的方法来在 TypeScript 中实现数组表示。

用法:

Array.from(object, mapFunction, thisValue)

参数:

  • object: 该参数用于指定要转换为数组的对象。
  • mapFunction: 此参数指定要对数组的每个项目调用的映射函数。
  • t他的值:此参数指定在执行Map函数的同时应用的费用。

返回值:

它返回一个数组对象或数组实例。

示例 1:在此示例中,我们将使用 Array from() 方法从字符串值创建数组。

// Creating array from input string
let myArr: string[] = Array
    .from("GeeksForGeeks");

// Display output
console.log(myArr);

输出:

[
'G', 'e', 'e', 'k',
's', 'F', 'o', 'r',
'G', 'e', 'e', 'k',
's'
]

示例 2:在此示例中,我们将使用 Array from() 方法从字符串值创建一个数组。

// Creating array form the given string
let myArr: string[] = Array
    .from("45878965412365");

// Display output
console.log(myArr);

输出:

[
'4', '5', '8', '7',
'8', '9', '6', '5',
'4', '1', '2', '3',
'6', '5'
]

相关用法


注:本文由纯净天空筛选整理自ramlakhan7大神的英文原创作品 TypeScript Array.from() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。