Skip to content

Instantly share code, notes, and snippets.

@slikts
Last active March 10, 2018 18:40
Show Gist options
  • Save slikts/c36605baee9bb80bd5a2e3aa890cea56 to your computer and use it in GitHub Desktop.
Save slikts/c36605baee9bb80bd5a2e3aa890cea56 to your computer and use it in GitHub Desktop.
const makeArray = (length, f) => Array.from({ length }, f);
const range = (a, b) => makeArray(Math.abs(b - a) + 1, (_, i) => a + (i * Math.sign(b - a)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment