Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update es6 & beyond - Chapter 5: Collections - TypedArray constructor description #1325

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jul 28, 2018

  1. Update ch5.md

    As mentioned in MDN and other sources TypedArray(length) constructor makes a view of `length` elements not bytes.
    It can be also tested by:
    ```javascript
    var x = new Uint32Array(2);
    console.log(x.length); //2
    x[1] = 25;
    console.log(x[1]); //25
    sJJdGG committed Jul 28, 2018
    Configuration menu
    Copy the full SHA
    a3b803d View commit details
    Browse the repository at this point in the history