“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 случайное число

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

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

Math.random() 


// Or something between 0 and 9:
Math.floor(Math.random() * 10)

// You can even make functions:
function random(min, max){return Math.floor(Math.random() * (max - min)) + min}
Code Cat

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

const rndInt = Math.floor(Math.random() * 6) + 1
Fatih KÖSE

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

// 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
}
Delightful Donkey

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

const random = 'abcdefghijklmnopqrstuvwxyz123456789'
const size = 8
let code = ""

for(let i = 1; i < size; i++) {
   code += random[Math.abs(Math.floor(Math.random() * random.length))]
}

console.log(code.toUpperCase())
Restu Wahyu Saputra

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

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

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

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

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