Answers for "how to get a random number in a variable js"

7

random js

function randomNumber(min, max) {
  return Math.floor(Math.random() * (max - min)) + min + 1;
}
Posted by: Guest on June-27-2020
0

how to write a program that shows a random number between 1 and 100 in your browser

var randomNum ;
randomNum = Math.ceil(Math.random() * 100);
document.write("Random number between 1 and 100: " + randomNum)
Posted by: Guest on June-20-2020

Code answers related to "how to get a random number in a variable js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language