流浪のwolf

卷帝

导航

求随机数

 PS:可以用parseInt() 替代下面代码的Math.floor()

 

/**
 * 生成 min - max 的随机数
 * @param {*} min 小数
 * @param {*} max 大数
 * @returns  满足条件的任意数
 */
function getRandom (min = 0,max = 10) {
    return Math.floor(Math.random() * (max - min + 1)) + min
};
// console.log(getRandom(100,110));

/**
 * 求任意数组的下标
 * @param {*} arrlength 数组长度
 * @returns  返回任意的数组的下标
 */
function getArrRandom (arrlength = 0) {
    return Math.floor(Math.random() * arrlength)
}

 

posted on 2022-07-19 09:46  流浪のwolf  阅读(8)  评论(0编辑  收藏  举报