“Llenar la matriz con números aleatorios JavaScript” 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

Llenar la matriz con números aleatorios JavaScript

let randomNumber = Array.from({length: 6}, () => Math.floor(Math.random() * 39));
Bah Keith

Matriz de JavaScript con valores aleatorios

function randomArrayStr(maxWordLength,arrayLength = false){
    const arr = []
    while(arrayLength){
        arr.push(Math.random().toString(36).replace(/[^a-z]+/g, '').substr(0, maxWordLength))
        --arrayLength
    }
    return arr
}
NotDamian

Llena una matriz con números aleatorios

    public static void main(String[] args) {
        Random r = new Random();

        int[] xr = new int[5];
        for (int i = 0; i < xr.length; i++) {
            xr[i] = r.nextInt(101);
        }

        System.out.println(Arrays.toString(xr));
    }
Chathumal Sangeeth

Respuestas similares a “Llenar la matriz con números aleatorios JavaScript”

Preguntas similares a “Llenar la matriz con números aleatorios JavaScript”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código