Skip to content

Instantly share code, notes, and snippets.

@roobie
Last active March 13, 2017 22:58
Show Gist options
  • Select an option

  • Save roobie/b2e986208dd8b00642dc to your computer and use it in GitHub Desktop.

Select an option

Save roobie/b2e986208dd8b00642dc to your computer and use it in GitHub Desktop.
range
function range (from, to, step) {
return new Array(Math.ceil((to - from) / (step || 1)))
.join(' ').split(' ')
.map(function (_, i) {
return from + (i * (step || 1))
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment