Skip to content

Instantly share code, notes, and snippets.

@jeremybuis
Created April 16, 2014 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremybuis/10890672 to your computer and use it in GitHub Desktop.
Save jeremybuis/10890672 to your computer and use it in GitHub Desktop.
A snippet of js that generates a 0 filled array
// http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array?lq=1
Array.apply(null, new Array(5)).map(Number.prototype.valueOf, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment