JS数组随机抽取
2020-07-10 本文已影响0人
赖兔宝
JS数组
js数组我们经常在开发中使用,那么,我们如何快速的随机选择其中一项呢
代码:
var items = [12, 548 , 'a' , 2 , 5478 , 'foo' , 8852, , 'Doe' , 2145 , 119];
var randomItem = items[Math.floor(Math.random() * items.length)];
console.log(randomItem);