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


JavaScript typedArray.of()用法及代碼示例


typedArray.of() 是 JavaScript 中的內置函數,用於構造具有可變數量參數的新 typedArray。

用法:

TypedArray.of(element0, element1, ......)

參數:它接受將要創建 typedArray 的不同元素的參數。

返回值:它返回新的 typedArray 實例。

例子:

javascript


// Printing the new typedArray with the given elements with 
// the parameters of typedArray.of() function. 
console.log(Uint8Array.of(5, 9, 1, 0, 45, 2)); 
console.log(Uint8Array.of(22, 9, 1, 20)); 
console.log(Uint8Array.of(5, 9, 0, 3, 1)); 
console.log(Uint8Array.of(undefined));

輸出:

5, 9, 1, 0, 45, 2
22, 9, 1, 20
5, 9, 0, 3, 1
0

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript typedArray.of() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。