Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save arrbxr/f1bcc56e5fbeb00f52fea31998bf317e to your computer and use it in GitHub Desktop.

Select an option

Save arrbxr/f1bcc56e5fbeb00f52fea31998bf317e to your computer and use it in GitHub Desktop.
Generate Random Whole Numbers with JavaScript created by arrbxr - https://repl.it/@arrbxr/Generate-Random-Whole-Numbers-with-JavaScript
function randomWholeNum() {
// here random number is 0 to 100
return Math.floor(Math.random() * 100);
}
randomWholeNum();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment