美文网首页
ts取随机数

ts取随机数

作者: Albert_d37d | 来源:发表于2020-10-29 15:42 被阅读0次

    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