Skip to content

Commit d0c3635

Browse files
joaquinelioHoonDongKang
authored andcommitted
mdn links
1 parent ea19200 commit d0c3635

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

4-binary/01-arraybuffer-binary-arrays/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ These methods allow us to copy typed arrays, mix them, create new arrays from ex
209209

210210
## DataView
211211

212-
[DataView](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView) is a special super-flexible "untyped" view over `ArrayBuffer`. It allows to access the data on any offset in any format.
212+
[DataView](mdn:/JavaScript/Reference/Global_Objects/DataView) is a special super-flexible "untyped" view over `ArrayBuffer`. It allows to access the data on any offset in any format.
213213

214214
- For typed arrays, the constructor dictates what the format is. The whole array is supposed to be uniform. The i-th number is `arr[i]`.
215215
- With `DataView` we access the data with methods like `.getUint8(i)` or `.getUint16(i)`. We choose the format at method call time instead of the construction time.

0 commit comments

Comments
 (0)