Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created January 15, 2019 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreasvirkus/33d58e2022d1438bc05260dee563c9fa to your computer and use it in GitHub Desktop.
Save andreasvirkus/33d58e2022d1438bc05260dee563c9fa to your computer and use it in GitHub Desktop.
export const createRange = (len, zeroBased = true) =>
new Array(len).fill().map((_, i) => zeroBased ? i : i + 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment