我正在学习Javascript并需要一些代码。
我需要在0-49之间的数组中保存6个随机数,然后显示这些数字,我该怎么做?
答案 0 :(得分:1)
您使用带有数字的池并绘制6。
var pool = Array.apply(null, { length: 49 }).map(function (_, i) { return i + 1; }),
numbers = Array.apply(null, { length: 6 }).map(function () { return pool[Math.floor(Math.random() * pool.length)]; });
console.log(numbers);