We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a5db0d + f285f0d commit 3828071Copy full SHA for 3828071
docs/arraybuffer.md
@@ -34,11 +34,11 @@
34
35
很多浏览器操作的 API,用到了二进制数组操作二进制数据,下面是其中的几个。
36
37
-- File API
38
-- XMLHttpRequest
39
-- Fetch API
40
-- Canvas
41
-- WebSockets
+- [Canvas](#canvas)
+- [Fetch API](#fetch-api)
+- [File API](#file-api)
+- [WebSockets](#websocket)
+- [XMLHttpRequest](#ajax)
42
43
## ArrayBuffer 对象
44
@@ -579,7 +579,7 @@ v3.byteOffset // 2
579
580
### TypedArray.prototype.length
581
582
-`length`属性表示 TypedArray 数组含有多少个成员。注意将`byteLength`属性和`length`属性区分,前者是字节长度,后者是成员长度。
+`length`属性表示 `TypedArray` 数组含有多少个成员。注意将 `length` 属性和 `byteLength` 属性区分,前者是成员长度,后者是字节长度。
583
584
```javascript
585
const a = new Int16Array(8);
0 commit comments