Skip to content

Instantly share code, notes, and snippets.

@hctilg
Created July 31, 2024 03:30
Show Gist options
  • Save hctilg/b15eb4b262c603bac4ce9b025a03374f to your computer and use it in GitHub Desktop.
Save hctilg/b15eb4b262c603bac4ce9b025a03374f to your computer and use it in GitHub Desktop.
Sequence generator function
// Sequence generator function
const range = (start = 0, stop = 0, step = 0) => Array.from({ length: (stop - start) / step + 1 }, (_, i) => start + (i * step));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment