typescript random between two numbers code example
Example 1: random int between two numbers javascript
Math.floor(Math.random() * (max - min + 1)) + min;
Math.floor(Math.random() * (max + 1));
Math.floor(Math.random() * max) + 1;
Example 2: generate random number between two numbers javascript
Math.floor(Math.random() * (max - min + 1)) + min;
Math.floor(Math.random() * (max + 1));
Math.floor(Math.random() * max) + 1;
Example 3: 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;
}