“Случайная функция JavaScript” Ответ

JavaScript случайное число от 1 до 10

// Genereates a number between 0 to 1;
Math.random();

// to gerate a randome rounded number between 1 to 10;
var theRandomNumber = Math.floor(Math.random() * 10) + 1;
Scriper

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
}
OssieFromDK

javaScript Получите случайное число в диапазоне

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

//usage example: getRandomNumberBetween(20,400); 
Grepper

Math.random JavaScript Double

function getRandomNumberBetween(min,max){
    return Math.floor(Math.random()*(max-min+1)+min);
}
Old-fashioned Oryx

JS случайное число

var random;
var max = 8
function findRandom() {
  random = Math.floor(Math.random() * max) //Finds number between 0 - max
  console.log(random)
}
findRandom()
Determined Programmer

Случайная функция JavaScript

let object = random(0, 50);
// making "object" a random number between 0 and 50.

console.log(object);
// printing object in the console
Horrible Hornet

Ответы похожие на “Случайная функция JavaScript”

Вопросы похожие на “Случайная функция JavaScript”

Больше похожих ответов на “Случайная функция JavaScript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования