1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 10:22:23 +00:00

fix: arraybuffer.md add new

This commit is contained in:
wzx 2020-03-18 17:21:22 +08:00 committed by GitHub
parent 21e3cfba2f
commit e69230681e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -730,7 +730,7 @@ struct someStruct {
`DataView`视图本身也是构造函数,接受一个`ArrayBuffer`对象作为参数,生成视图。
```javascript
DataView(ArrayBuffer buffer [, 字节起始位置 [, 长度]]);
new DataView(ArrayBuffer buffer [, 字节起始位置 [, 长度]]);
```
下面是一个例子。