Skip to content

Instantly share code, notes, and snippets.

@gt3
Created May 25, 2017 15:38
Show Gist options
  • Select an option

  • Save gt3/1c6ea617799b9942732f2030820394b7 to your computer and use it in GitHub Desktop.

Select an option

Save gt3/1c6ea617799b9942732f2030820394b7 to your computer and use it in GitHub Desktop.
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