Skip to content

Instantly share code, notes, and snippets.

@richleach
Created April 21, 2021 20:56
Show Gist options
  • Save richleach/102a439d1714e61961152b9e57b3f51a to your computer and use it in GitHub Desktop.
Save richleach/102a439d1714e61961152b9e57b3f51a to your computer and use it in GitHub Desktop.
JS Snippet: Generate a random number, display in console
const rand = Math.floor(Math.random() * 10)+1
console.log(rand)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment