Skip to content

Instantly share code, notes, and snippets.

@jabranr
Last active September 17, 2017 09:04
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 jabranr/69b5ed5a994ec4a399a79728ef9f8400 to your computer and use it in GitHub Desktop.
Save jabranr/69b5ed5a994ec4a399a79728ef9f8400 to your computer and use it in GitHub Desktop.
(Math) Generate a loop with maximum range
// Increase until a range is met then start again:
let range = 10;
let x = (x + 1) % range;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment