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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。