Answers for "node js get random number"

27

random int between two numbers javascript

// Between any two numbers
Math.floor(Math.random() * (max - min + 1)) + min;

// Between 0 and max
Math.floor(Math.random() * (max + 1));

// Between 1 and max
Math.floor(Math.random() * max) + 1;
Posted by: Guest on February-09-2020
5

generate random number nodejs

function getRandomNumberBetween(min,max){
    return Math.floor(Math.random()*(max-min+1)+min);
}
Posted by: Guest on December-31-2019
0

random integer in nodejs

//in npm, type npm install random-int

import randomInteger from 'random-int';

randomInteger(5);
//=> 3

randomInteger(10, 100);
//=> 54
Posted by: Guest on June-16-2021
0

javascript pseudo random

var seed = 0;
var modulus = 2 ** 32;
var a = 1664525;
var c = 1013904223;

function getRandom() {
  var returnVal = seed / modulus;
  seed = (a * seed + c) % modulus;
  return returnVal;
}
Posted by: Guest on June-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language