Skip to content

Instantly share code, notes, and snippets.

@wtho
Created April 3, 2022 19:15
Show Gist options
  • Save wtho/33db912347121d2d29c6d6b900750a1f to your computer and use it in GitHub Desktop.
Save wtho/33db912347121d2d29c6d6b900750a1f to your computer and use it in GitHub Desktop.
range.ts
const range = (length: number) => Array.from({ length }, (_, i) => i)
// JS version
const rangeJs = length => Array.from({ length }, (_, i) => i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment