Answers for "chose 3 random value of an array"

49

javascript get random array value

//get random value from array
var colors = ["red","blue","green","yellow"];
var randColor = colors[Math.floor(Math.random() * colors.length)];
Posted by: Guest on July-31-2019
0

assigning an array with random numbers

public static double[] list() {
    anArray = new double[10];
    for(int i=0;i<anArray.length;i++)
    {
        anArray[i] = randomFill();
    }
    return anArray;
}
Posted by: Guest on June-29-2020

Code answers related to "chose 3 random value of an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language