“preencher a matriz com números aleatórios javascript” Respostas de código

JavaScript Obtenha valor de matriz aleatória

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

preencher a matriz com números aleatórios javascript

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

JavaScript Array com valores aleatórios

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

Preencha a matriz com números aleatórios

    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

Respostas semelhantes a “preencher a matriz com números aleatórios javascript”

Perguntas semelhantes a “preencher a matriz com números aleatórios javascript”

Procure respostas de código populares por idioma

Procurar outros idiomas de código