Answers for "how ti get a random item from an array in javascript"

2

random string from array javascript

var textArray = [
    'song1.ogg',
    'song2.ogg'
];
var randomNumber = Math.floor(Math.random()*textArray.length);
Posted by: Guest on July-02-2020
0

how to get a random statement from an array in javascript

// List your array items
let Testing1 = ["put","things","here"]
let Generate = Math.floor((Math.random() * Testing1.length)); // Generates a number of the array.

// logs the result
console.log(Testing1[Generate])
Posted by: Guest on September-11-2020

Code answers related to "how ti get a random item from an array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language