Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created May 25, 2016 02:23
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 ericelliott/62d139f8f36cbe38ddbfb8d20f9ffca6 to your computer and use it in GitHub Desktop.
Save ericelliott/62d139f8f36cbe38ddbfb8d20f9ffca6 to your computer and use it in GitHub Desktop.
range first try
const range = (start, end) => (
Array.from({ length: end }, (x, i) => i + start)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment