Answers for "math.random from 1 to 6"

0

js random number between 1 and 5

const rndInt = Math.floor(Math.random() * 6) + 1
    console.log(rndInt)
 Run code snippet
Posted by: Guest on April-07-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language