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;
}
}
本文标题:ts取随机数
本文链接:https://www.haomeiwen.com/subject/oxakvktx.html
网友评论