Skip to content

Commit 7523f55

Browse files
committed
docs(arraybuffer): update DataView methods
1 parent 07e9c15 commit 7523f55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.DS_Store

6 KB
Binary file not shown.

docs/arraybuffer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ const dv = new DataView(buffer);
746746
- `DataView.prototype.byteLength`:返回占据的内存字节长度
747747
- `DataView.prototype.byteOffset`:返回当前视图从对应的 ArrayBuffer 对象的哪个字节开始
748748

749-
`DataView`实例提供 8 个方法读取内存
749+
`DataView`实例提供10个方法读取内存
750750

751751
- **`getInt8`**:读取 1 个字节,返回一个 8 位整数。
752752
- **`getUint8`**:读取 1 个字节,返回一个无符号的 8 位整数。
@@ -790,7 +790,7 @@ const v2 = dv.getUint16(3, false);
790790
const v3 = dv.getUint16(3);
791791
```
792792

793-
DataView 视图提供 8 个方法写入内存
793+
DataView 视图提供10个方法写入内存
794794

795795
- **`setInt8`**:写入 1 个字节的 8 位整数。
796796
- **`setUint8`**:写入 1 个字节的 8 位无符号整数。

0 commit comments

Comments
 (0)