ts取随机数

2020-10-29  本文已影响0人  Albert_d37d

export class CTools

{

    //[min - max)

    public static GetRand(min, max) {

        return Math.floor(Math.random() * (max - min) ) + min;

    }

}

上一篇下一篇

猜你喜欢

热点阅读