美文网首页
Math.random()

Math.random()

作者: xueyueshuai | 来源:发表于2020-06-18 02:51 被阅读0次
    Math.random()
    Math.random() 返回 0(包括) 至 1(不包括) 之间的随机数:
    
    
    Math.random() 与 Math.floor() 一起使用用于返回随机整数。
    Math.floor(Math.random() * 10);     // 返回 0 至 9 之间的数
    Math.floor(Math.random() * 101);    // 返回 0 至 100 之间的数
    
    
    
    这个 JavaScript 函数始终返回介于 min(包括)和 max(不包括)之间的随机数:
    function getRndInteger(min, max) {
        return Math.floor(Math.random() * (max - min) ) + min;
    }
    
    这个 JavaScript 函数始终返回介于 min 和 max(都包括)之间的随机数:
    function getRndInteger(min, max) {
        return Math.floor(Math.random() * (max - min + 1) ) + min;
    }
    

    相关文章

      网友评论

          本文标题:Math.random()

          本文链接:https://www.haomeiwen.com/subject/aqkyxktx.html