Created
May 25, 2017 15:38
-
-
Save gt3/1c6ea617799b9942732f2030820394b7 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
| let a1 = Array(3).map(x => 42) // => [undefined,undefined,undefined] | |
| let a2 = Array.from(Array(3), x => 42) // => [42, 42, 42] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment