Answers for "how to generate a random whole number in javascript"

1

js random int

function getRandomInt(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
Posted by: Guest on September-18-2020
0

Generate random whole numbers javascript

var randomWholeNumber = Math.floor(Math.random() * 20);


function randomWholeNum() {

	return Math.floor(Math.random() * 10);

}

console.log(randomWholeNum());
Posted by: Guest on January-02-2021

Code answers related to "how to generate a random whole number in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language