Skip to content

Instantly share code, notes, and snippets.

@toddzebert
Last active March 7, 2017 08:25
Show Gist options
  • Save toddzebert/b4465de41b0f8d317d7a685604983c36 to your computer and use it in GitHub Desktop.
Save toddzebert/b4465de41b0f8d317d7a685604983c36 to your computer and use it in GitHub Desktop.
a helper utility that returns a random integer; see https://gist.github.com/toddzebert/cee6d8b0475275be0f48d7dfef142bd3
function randInt (spread, base) {
return Math.floor(Math.random() * spread + (isNaN(base) ? 0: base));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment