TypedArray.of()
方法创建一个具有可变数量参数的新类型数组 。此方法几乎与Array.of()
相同。
句法
TypedArray.of(element0[, element1[, ...[, elementN]]])
where TypedArray is one of:
Int8Array
Uint8Array
Uint8ClampedArray
Int16Array
Uint16Array
Int32Array
Uint32Array
Float32Array
Float64Array
参数
-
elementN
- 创建类型数组的元素。
Return value
一个新的 TypedArray
实例。
描述
Array.of()
和 TypedArray.of()
之间的一些细微区别:
- 如果传递给TypedArray.of的这个值不是构造函数,TypedArray.of将抛出一个
Array
。 TypedArray.of
使用 [[Put]] 其中Array.of使用 [[DefineProperty]]。因此,当使用handler.defineProperty
。
范例
Uint8Array.of(1); // Uint8Array [ 1 ] Int8Array.of("1", "2", "3"); // Int8Array [ 1, 2, 3 ] Float32Array.of(1, 2, 3); // Float32Array [ 1, 2, 3 ] Int16Array.of(undefined); // IntArray [ 0 ]
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) %TypedArray%.of |
Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) %TypedArray%.of |
Draft |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains.
Find out how you can help!
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 45.0 | 38 (38) | 未实现 | 未实现 | 未实现 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 未实现 | 未实现 | 38.0 (38) | 未实现 | 未实现 | 未实现 |