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;
}
}
export class CTools
{
//[min - max)
public static GetRand(min, max) {
return Math.floor(Math.random() * (max - min) ) + min;
}
}