“JS Número aleatorio” Código de respuesta

Cómo generar un número aleatorio en 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 Número aleatorio

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 Número aleatorio

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 Número aleatorio

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

JS Número aleatorio

// 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 Número aleatorio

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

Respuestas similares a “JS Número aleatorio”

Preguntas similares a “JS Número aleatorio”

Más respuestas relacionadas con “JS Número aleatorio” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código