Skip to content

Instantly share code, notes, and snippets.

@dormd
Last active August 19, 2019 09:24
Show Gist options
  • Save dormd/50afc87ea7f7fd902a3ed407c7ef4bfd to your computer and use it in GitHub Desktop.
Save dormd/50afc87ea7f7fd902a3ed407c7ef4bfd to your computer and use it in GitHub Desktop.
range(4) // => [0, 1, 2, 3]
range(-4) // => [0, -1, -2, -3]
range(1, 5) // => [1, 2, 3, 4]
range(0, 20, 5) // => [0, 5, 10, 15]
range(0, -4, -1) // => [0, -1, -2, -3]
range(0) // => []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment