美文网首页
JS数组随机抽取

JS数组随机抽取

作者: 赖兔宝 | 来源:发表于2020-07-10 14:46 被阅读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);

相关文章

网友评论

      本文标题:JS数组随机抽取

      本文链接:https://www.haomeiwen.com/subject/sgkmcktx.html