Answers for "how to handle math.random number occurs only 1"

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
1

math random from minus 1

var plusOrMinus = Math.random() < 0.5 ? -1 : 1;
Posted by: Guest on August-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language