random html code example

Example 1: generate random numbers in js

Math.floor((Math.random() * 100) + 1);
//Generate random numbers between 1 and 100
//Math.random generates [0,1)

Example 2: Math.random() javascript

//Returns a number between 1 and 0
  console.log(Math.random());
  
//if you want a random number between two particular numbers, 
//you can use this function
  function getRandomBetween(min, max) {
    return Math.random() * (max - min) + min;
  }
//Returns a random number between 20 and 170
  console.log(getRandomBetween(20,170));
  
//if you want a random integer number from one number to another 
//(including the min and the max numbers), you can use this function
  function getRandomIntBetween(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
  }
  
//Returns a random integer number from 0 to 25
  console.log(getRandomIntInclusive(0,25));

Example 3: angular random number between 1 and 10

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

Example 4: javascript random

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

Example 5: how to generate random number in javascript

var randomNo = Math.floor(Math.rand() * 10000000001);
console.log(randomNo);

//This will generate random number

Example 6: how to create a random number generator in javascript

console.log(Math.floor(Math.random() * 10))