Skip to content

Instantly share code, notes, and snippets.

@dun4n
Last active August 29, 2015 14:12
Show Gist options
  • Save dun4n/6db23f81442ed015352c to your computer and use it in GitHub Desktop.
Save dun4n/6db23f81442ed015352c to your computer and use it in GitHub Desktop.
Create an Array with values from 1 to N
function f(N) {
return Array.apply(null, {length: N}).map(Number.call, Number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment