Skip to content

Instantly share code, notes, and snippets.

@lenivene
Created September 19, 2020 23:07
Show Gist options
  • Save lenivene/2583ce1bc84e221c672729e2da2059df to your computer and use it in GitHub Desktop.
Save lenivene/2583ce1bc84e221c672729e2da2059df to your computer and use it in GitHub Desktop.
Generate random numbers in JavaScript
function generate_number(){
return Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment