Answers for "random number from 0 to 100 js"

37

js random number between 1 and 100

function getRandomNumberBetween(min,max){
    return Math.floor(Math.random()*(max-min+1)+min);
}

//usage example: getRandomNumberBetween(20,400);
Posted by: Guest on July-23-2019
4

angular random number between 1 and 10

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

math random 0 to 100

Math.floor(Math.random() * 101);
Posted by: Guest on March-14-2021
4

javascript random

function random(min, max) {
  return ~~(Math.random() * (max - min + 1) + min);
}
random(1, 5);
Posted by: Guest on June-08-2020

Code answers related to "random number from 0 to 100 js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language