“генерировать случайный int js” Ответ

JavaScript генерирует случайное число

//To genereate a number between 0-1
Math.random();
//To generate a number that is a whole number rounded down
Math.floor(Math.random())
/*To generate a number that is a whole number rounded down between
1 and 10 */
Math.floor(Math.random() * 10) + 1 //the + 1 makes it so its not 0.
DCmax1k

генерировать случайные числа в JS

Math.floor((Math.random() * 100) + 1);
//Generate random numbers between 1 and 100
//Math.random generates [0,1)
gritter97

генерировать случайный int js

function getRandomInt(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
JonnyG

генерировать случайное целое число JavaScript

/**
 * Returns a random number between min (inclusive) and max (exclusive)
 */
function getRandomArbitrary(min, max) {
    return Math.random() * (max - min) + min;
}

/**
 * Returns a random integer between min (inclusive) and max (inclusive).
 * The value is no lower than min (or the next integer greater than min
 * if min isn't an integer) and no greater than max (or the next integer
 * lower than max if max isn't an integer).
 * Using Math.round() will give you a non-uniform distribution!
 */
function getRandomInt(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
@codebraker

JavaScript случайный

function random(min, max) {
  return ~~(Math.random() * (max - min + 1) + min);
}
random(1, 5);
adriancmiranda

JS Random Int

let int = Math.floor(Math.random() * 10);
Bewildered Bat

Ответы похожие на “генерировать случайный int js”

Вопросы похожие на “генерировать случайный int js”

Больше похожих ответов на “генерировать случайный int js” по JavaScript

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

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