Answers for "random pick only once array javascript"

1

pick random string from array javascript

var groceries = [
'milk',
'coriander',
'cucumber',
'eggplant'
]
let mygroceries = groceries[Math.floor(Math.random() * groceries.length)]
console.log(mygroceries)//This gives you any string from groceries
Posted by: Guest on June-14-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 "random pick only once array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language