“Cómo obtener un elemento aleatorio de una matriz” Código de respuesta

JavaScript obtenga un valor de matriz aleatorio

//get random value from array
var colors = ["red","blue","green","yellow"];
var randColor = colors[Math.floor(Math.random() * colors.length)];
Grepper

Cómo obtener un elemento aleatorio de una matriz JavaScript

var foodItems = ["Bannana", "Apple", "Orange"];
var theFood = foodItems[Math.floor(Math.random() * foodItems.length)];
/* Will pick a random number from the length of the array and will go to the
corosponding number in the array E.G: 0 = Bannana */
Your moms hornyness

Obtener elemento aleatorio de la matriz js

var item = items[Math.floor(Math.random() * items.length)];
Worried Willet

Obtenga un elemento aleatorio de Array JavaScript

let items = [12, 548 , 'a' , 2 , 5478 , 'foo' , 8852, , 'Doe' , 2145 , 119];

let  randomItem = items[Math.floor(Math.random() * items.length)];
Creepy Gábor

Obtenga un artículo aleatorio en la matriz

function getRandomNumberElement(items: number[]): number {
    let randomIndex = Math.floor(Math.random() * items.length);
    return items[randomIndex];
}
Code language: TypeScript (typescript)
Grumpy Gerbil

Respuestas similares a “Cómo obtener un elemento aleatorio de una matriz”

Preguntas similares a “Cómo obtener un elemento aleatorio de una matriz”

Más respuestas relacionadas con “Cómo obtener un elemento aleatorio de una matriz” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código