JS length 属性的总结
**length
**访问器属性表示类型化数组的长度(元素数)。
语法
typedarray.length
描述
length
是一个访问器属性,它的 set 访问器函数是undefined
,意思是你只能够读取这个属性。它的值在_TypedArray_构造时建立,不能被修改。如果 TypedArray 没有指定byteOffset
或者 length
,会返回所引用的ArrayBuffer
的length
。TypedArray 是这里的 TypedArray 对象之一。
示例
使用length
属性
var buffer = new ArrayBuffer(8);
var uint8 = new Uint8Array(buffer);
uint8.length; // 8 (符合 buffer 的 length)
var uint8 = new Uint8Array(buffer, 1, 5);
uint8.length; // 5 (在 Uint8Array 构造时指定)
var uint8 = new Uint8Array(buffer, 2);
uint8.length; // 6 (根据被构造的 Uint8Array 的 offset)
规范
Specification | Status | Comment |
---|---|---|
[ECMAScript 2015 (6th Edition, ECMA-262) | ||
TypedArray.prototype.length](https://www.ecma-international.org/ecma-262/6.0/#sec-get-%typedarray%.prototype.length) | Standard | 初始定义 |
[ECMAScript Latest Draft (ECMA-262) | ||
TypedArray.prototype.length](https://tc39.github.io/ecma262/#sec-get-%typedarray%.prototype.length) | 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.
- Desktop
- Mobile
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 7.0 | 4.0 (2) | 10 | 11.6 | 5.1 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 4.0 | (Yes) | 4.0 (2) | 10 | 11.6 | 4.2 |