“JS случайный” Ответ

JS случайный

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

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

JS случайный

/*
`Math.random` returns a pseudo-random number between 0 and 1.
a pseudo-random number is generated by an algorithm, it is not
technically actually random, but for all intents and purposes
it is random enough that no human should be able to find a
pattern
*/

Math.random(); // -> Decimal number between 0 and 1

Math.round(Math.random()); // -> 0 or 1

Math.random() * max; // -> Decimal number between 0 and max

Math.floor(Math.random() * max); // -> Whole number between 0 and max - 1

Math.round(Math.random() * max); // -> Whole number between 0 and max

Math.ceil(Math.random() * max); // -> Whole number between 1 and max

(Math.random() * (max - min)) + min; // Decimal number between min and max

Math.floor((Math.random() * (max - min)) + min); // Whole number between min and max - 1

Math.round((Math.random() * (max - min)) + min); // Whole number between min and max

Math.ceil((Math.random() * (max - min)) + min); // Whole number between min + 1 and max
MattDESTROYER

JS случайный

Math.floor(Math.random() * 10) + 1 // Random number Between 1 and 10
// First Math.random give us a random number between 0 and 0,99999
// The we multiply it by 10
// And we round dow with Math.floor
// We add 1 so the result will never be 0 

// Another Example:
h.floor(Math.random() * 20) + 10 // Random number Between 10 and 20
DevLorenzo

JS случайный

function randint(low:number, max?:number) {
  return Math.floor(Math.random() * 10) % (max ?? low) + (max ? low : 0);
}
Jolly Jay

JS случайный

// using array and random example
function getTheBill() {
  let names = ["bob", "mike", "matt"];

  let randomFriend = Math.floor(Math.random() * names.length);

  let randomFriendBuyng = names[randomFriend];

  return randomFriendBuyng + " is buying us lunch today!";
}
Manga301

JS случайный

Math.floor(Math.random() * 900000)
Shadow

JS случайный

function randint(low, max) {
  return Math.round(Math.random() * 10) % (max ?? low) + (max ? low : 0);
}
Jolly Jay

Ответы похожие на “JS случайный”

Вопросы похожие на “JS случайный”

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

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

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