产生随机数区间:如0.8~1.1:

getRandom(min, max) { //根据最小值和最大值产生一个随机数
    return Math.floor(Math.random() * (max - min) + min);
}
Logo

前往低代码交流专区

更多推荐