randomly select element from array javascript code example
Example: javascript array random selector
let index=Math.floor(Math.random()*quotes.length);
<!--This will give a random quote-->
quotes[index];
let index=Math.floor(Math.random()*quotes.length);
<!--This will give a random quote-->
quotes[index];