Skip to content

Instantly share code, notes, and snippets.

@henryspivey
Forked from prof3ssorSt3v3/8-array.js
Created October 30, 2019 20:49
Show Gist options
  • Save henryspivey/e5764632a0aa949381de0f7bc3e8a744 to your computer and use it in GitHub Desktop.
Save henryspivey/e5764632a0aa949381de0f7bc3e8a744 to your computer and use it in GitHub Desktop.
//version 1
let a1 = Array.from({
length: 5
}, n => Math.random());
console.log('1', a1);
//version 2
let a2 = new Array(5).fill(1).map(n => Math.random());
console.log('2', a2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment