Array.of() 中的方法TypeScript用於通過提供多個參數來創建數組。這是一個內置函數。
用法:
Array.of(items)
參數
- items: 在這裏您可以傳遞多個元素,而無需考慮它們的數據類型。
返回值
它返回一個新數組,其中包含您在方法中作為參數傳遞的元素。
示例 1:下麵的代碼是 Array.of() 方法的基本實現,用於創建傳遞參數的數組。
Javascript
const geeks:number[]=
Array.of(1,2,3,4);
console.log(geeks)
輸出:
[1, 2, 3, 4]
示例 2:以下代碼使用 Array.of() 方法創建不同數據類型的數組。
Javascript
const geeks:(number|strin|boolean)=
Array.of(1,"GFG",true, 8.14);
console.log(geeks)
輸出:
[1, 'GFG', true, 8.14]
相關用法
- TypeScript Array.from()用法及代碼示例
- TypeScript Array.isArray()用法及代碼示例
- TypeScript Array every()用法及代碼示例
- TypeScript Array filter()用法及代碼示例
- TypeScript Array forEach()用法及代碼示例
- TypeScript Array indexOf()用法及代碼示例
- TypeScript Array join()用法及代碼示例
- TypeScript Array lastIndexOf()用法及代碼示例
- TypeScript Array map()用法及代碼示例
- TypeScript Array push()用法及代碼示例
- TypeScript Array reduce()用法及代碼示例
- TypeScript Array reduceRight()用法及代碼示例
- TypeScript Array slice()用法及代碼示例
- TypeScript Array some()用法及代碼示例
- TypeScript Array sort()用法及代碼示例
- TypeScript Array splice()用法及代碼示例
- TypeScript Array unshift()用法及代碼示例
- TypeScript Array flat()用法及代碼示例
- TypeScript Array findIndex()用法及代碼示例
- TypeScript Array fill()用法及代碼示例
- TypeScript Array entries()用法及代碼示例
- TypeScript Array keys()用法及代碼示例
- TypeScript Array includes()用法及代碼示例
- TypeScript Array find()用法及代碼示例
- TypeScript Number toExponential()用法及代碼示例
注:本文由純淨天空篩選整理自pankajbind大神的英文原創作品 TypeScript Array.of() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。