如何在数字组之间设置math.random

时间:2019-06-09 18:45:31

标签: javascript

我尝试在一组数字之间设置Math.random值的尝试多次失败,并且不知道如何执行此操作。

我以前尝试过的是设置math.floor(Math.random()* 400)-200;看看函数是否可以得到400到200之间的数字。

Math.floor(Math.random() * 400) - 200;

但是该函数最终接受了给定的数字并减去200

2 个答案:

答案 0 :(得分:2)

我认为您想要Math.random() * 200 + 200;

答案 1 :(得分:0)

尝试Math.floor((Math.random()+ 1)* 200);