random array nodejs code example
Example 1: javascript return a random value from an array
const months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
const randomMonth = months[Math.floor(Math.random() * months.length)];
console.log("random month =>", randomMonth);
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)];