Math.random()在循环中使用时不会给出新的数字

时间:2019-12-31 05:31:47

标签: javascript database loops random

当我尝试使用Math.random()生成一个新的随机数时,无论何时,它每次都会为我提供完全相同的答案,但仅限于某些用途。

顺便说一下,我有一个自定义随机函数:

function random(min, max) {
 return Math.random() * (max - min + 1) + min;
}

例如,这段代码完全符合我的要求,它将数据集.data [I] [ii]中的每个插槽填充为一个新的随机数。

dataset.data.forEach((point, index) => {
 //fill dataset with random numbers
 dataset.data[index] = point.map(() =>
    Math.round(random(0, screen.get().width))
 );
});

但是,当我使用此代码时,每次都会用完全相同的随机数填充数组。

dataset.data.forEach((point, index) => {
 //fill dataset with random numbers
 dataset.data[index][0] = Math.round(random(0, screen.get().width));
 dataset.data[index][1] = Math.round(random(0, screen.get().height));
});

我一直遇到这个问题,但我并不理解,我确实理解有时会有大量相同的数字,但是无论我做什么,在这样的某些情况下,只有一种写法可行,这没有帮助。

1 个答案:

答案 0 :(得分:0)

Math.random()映射到数组时,会为该数组中的每个索引生成一个新的随机数,因此,解决我的问题的方法是在if语句中使用索引。

arr = new Array(2).fill([]);
arr.forEach((point, index) => {
    arr[index] = point.map((array, index) => i===theSpotInYourArray?returnthis:orreturnthis
})