Skip to content

Instantly share code, notes, and snippets.

@moimikey
Created December 5, 2017 01:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moimikey/811b6e227979731bd00d955de91ebf8c to your computer and use it in GitHub Desktop.
Save moimikey/811b6e227979731bd00d955de91ebf8c to your computer and use it in GitHub Desktop.
fill array with value of variable in javascript in 49 bytes
const o = { a: true };
[...Array(9)].map(Function.prototype.valueOf, o);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment