Answers for "randomize once in 1000th example how math js"

14

js random number between 1 and 10

var randomNumber =  Math.floor(Math.random() * (max - min + 1)) + min;
//max is the highest number you want it to generate
//min is the lowest number you want it to generate
Posted by: Guest on May-19-2021
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