random item select from array js 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];