how to get a random item from a list in javascript code example

Example 1: Javascript get random item from array

var colors = ["red","blue","green","yellow"];
var randomColor = colors[Math.floor(Math.random()*colors.length)]; //pluck a random color

Example 2: get random item from array javascript

const randomElement = array[Math.floor(Math.random() * array.length)];

Example 3: get random item from array javascript

let items = [12, 548 , 'a' , 2 , 5478 , 'foo' , 8852, , 'Doe' , 2145 , 119];

let  randomItem = items[Math.floor(Math.random() * items.length)];

Tags:

Misc Example