JS 获取随机数

//获取俩个间的随机数
function getRandomNumberByRange(start, end) {
    //获取0-1之间的随机数
    //var num = Math.random();
    return Math.floor(Math.random() * (end - start) + start)
}
posted @ 2022-02-15 11:47  向前、向前  阅读(528)  评论(0编辑  收藏  举报