Skip to content

Instantly share code, notes, and snippets.

@fostyfost
Last active April 21, 2023 10:12
Show Gist options
  • Save fostyfost/084551e3de765139eee95df6dde13890 to your computer and use it in GitHub Desktop.
Save fostyfost/084551e3de765139eee95df6dde13890 to your computer and use it in GitHub Desktop.
Array Range
export const getArrayRange = (length: number, startFrom = 0): number[] => {
return Array.from({ length }, (_, index) => index + startFrom)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment