其他分享
首页 > 其他分享> > 求随机数

求随机数

作者:互联网

 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)
}

 

标签:floor,max,min,param,arrlength,随机数,Math
来源: https://www.cnblogs.com/zhulongxu/p/16492960.html