Answers for "jaavascript math.random"

65

math.random javascript

Math.random() 
// will return a number between 0 and 1, you can then time it up to get larger numbers.
//When using bigger numbers remember to use Math.floor if you want it to be a integer
Math.floor(Math.random() * 10) // Will return a integer between 0 and 9
Math.floor(Math.random() * 11) // Will return a integer between 0 and 10

// You can make functions aswell 
function randomNum(min, max) {
	return Math.floor(Math.random() * (max - min)) + min; // You can remove the Math.floor if you don't want it to be an integer
}
Posted by: Guest on November-25-2020
0

random number javascript

// The below code executes 0-100, I have used es6 arrow function concept
setInterval(() => console.log(Math.floor(Math.random()*101)),1000);
Posted by: Guest on August-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language