首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

typedArray.length

length访问器属性表示类型化数组的长度(元素数)。

语法

代码语言:javascript
复制
typedarray.length

描述

length是一个访问器属性,它的 set 访问器函数是undefined,意思是你只能够读取这个属性。它的值在TypedArray构造时建立,不能被修改。如果TypedArray没有指定byteOffset或者length,会返回所引用的ArrayBufferlengthTypedArray是这里的TypedArray 对象之一。

示例

使用length 属性

代码语言:javascript
复制
var buffer = new ArrayBuffer(8);

var uint8 = new Uint8Array(buffer);
uint8.length; // 8 (matches the length of the buffer)

var uint8 = new Uint8Array(buffer, 1, 5);
uint8.length; // 5 (as specified when constructing the Uint8Array)

var uint8 = new Uint8Array(buffer, 2);
uint8.length; // 6 (due to the offset of the constructed Uint8Array)

规范

Specification

Status

Comment

ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'TypedArray.prototype.length' in that specification.

Standard

Initial definition.

ECMAScript Latest Draft (ECMA-262)The definition of 'TypedArray.prototype.length' in that specification.

Draft

?

浏览器兼容性

Feature

Chrome

Edge

Firefox (Gecko)

Internet Explorer

Opera

Safari

Basic support

7.0

(Yes)

4.0 (2)

10

11.6

5.1

Feature

Android

Chrome for Android

Edge

Firefox Mobile (Gecko)

IE Mobile

Opera Mobile

Safari Mobile

Basic support

4.0

(Yes)

(Yes)

4.0 (2)

10

11.6

4.2

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com