Created
July 3, 2019 17:59
-
-
Save AleksandrChukhray/63433536e14a1bc31f615fc66298906b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const a = [1, 2]; // => [1,2] | |
| const b = Array(10); // => [empty * 10]; | |
| const k = new Array(10); // => [empty *10]; | |
| const m = Array.prototype.constructor(10, 12, 13); // => [10, 12, 13]; | |
| const l = Array.prototype.constructor(10); // => [empty * 10]; | |
| const f = new Array(10, 12, 13); // => [10, 12, 13]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment