Guest User

Untitled

a guest
Oct 18th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. // creates an array with 1000 items
  2. // toString(36) converts floating numbers to 0-9 & a-z (I think)
  3. const arr = [...Array(1000).fill().map(a => a = Math.random().toString(36).substring(7))];
  4. console.log(arr);
Add Comment
Please, Sign In to add comment