如果我有
var numbs = [1, 2, 3, 4]
var new numbs = [1 + Math.random() * 2 - 1, 2 + '' , 3 + etc....
所以我最终得到了类似的东西:
var new numbs = [.877, 2.166, 2.456, 4.235]
必须有更好的方法来做到这一点......
答案 0 :(得分:0)
// This gives you an array with 4 items all collected using Math.random()
var nums = Array.apply(null, Array(4)).map(function(v, key) {
return Math.round(Math.random() * 100) / 100;
});
nums; // [0.64, 0.35, 0.36, 0.44]
然后,您可以在计算中使用key
(索引):
// This gives you an array with 4 items all collected using Math.random()
var nums = Array.apply(null, Array(4)).map(function(v, key) {
return key + Math.round(Math.random() * 100) / 100;
});
nums; // [0.36, 1.52, 2.35, 3.89]
var nums = Array.apply(null, Array(4)).map(function(){});
与写作基本相同:
var nums = [];
for ( var i = 0; i < 4; i++ ) {
nums.push( /*something*/ );
}
但是你会得到一个封闭的范围。
答案 1 :(得分:0)
Math.random()主要用于生成0到1之间的随机十进制数。因此,如果您对获取整数元素感兴趣,请使用Math.floor(Math.random())或Math.ceil(Math.random) ())或Math.round(Math.random())根据您的要求。
答案 2 :(得分:0)
您可以使用Array.prototype.map
的Javascript
function randomBetween(min, max) {
return Math.random() * (max - min) + min;
}
var numbs = [1, 2, 3, 4],
numbsOffset = numbs.map(function (value) {
return +(value + randomBetween(-1, 1)).toFixed(2);
});
console.log(numbsOffset);
上
如果您不想使用ECMAScript 5
,也可以使用for
循环