當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。