本文介绍了从 JavaScript 数组中获取随机值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
考虑:
var myArray = ['January', 'February', 'March'];
如何使用 JavaScript 从这个数组中选择一个随机值?
How can I select a random value from this array using JavaScript?
推荐答案
这是一个简单的单行:
const randomElement = array[Math.floor(Math.random() * array.length)];
例如:
const months = ["January", "February", "March", "April", "May", "June", "July"];
const random = Math.floor(Math.random() * months.length);
console.log(random, months[random]);
这篇关于从 JavaScript 数组中获取随机值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!