Skip to content

Instantly share code, notes, and snippets.

@pokorson
Last active May 27, 2017 16:26
Show Gist options
  • Save pokorson/f32d6e9ac4c7670b5cf2a31faf2ef2e5 to your computer and use it in GitHub Desktop.
Save pokorson/f32d6e9ac4c7670b5cf2a31faf2ef2e5 to your computer and use it in GitHub Desktop.
Javascript range
function range(from, to) {
return Array.apply(null, Array(to - from + 1)).map(function (x, i) { return to - from + i; })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment