Answers for "random string js frowm array"

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

javascript generate random string from array

Math.random().toString(36).substr(2, 5);
Posted by: Guest on September-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language