Created
April 16, 2014 15:04
-
-
Save jeremybuis/10890672 to your computer and use it in GitHub Desktop.
A snippet of js that generates a 0 filled array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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