Skip to content

Instantly share code, notes, and snippets.

@stasgavrylov
Last active December 7, 2015 13:37
Show Gist options
  • Save stasgavrylov/126330125b29c05d7844 to your computer and use it in GitHub Desktop.
Save stasgavrylov/126330125b29c05d7844 to your computer and use it in GitHub Desktop.
Init array with values
function arrayOfInts(n) {
return Array.apply(null, {length: n}).map(function(v,i) {return i})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment