Created
April 21, 2021 20:56
-
-
Save richleach/102a439d1714e61961152b9e57b3f51a to your computer and use it in GitHub Desktop.
JS Snippet: Generate a random number, display in console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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