美文网首页
javascript之random()返回随机数

javascript之random()返回随机数

作者: 代码使劲儿搬 | 来源:发表于2020-11-12 10:05 被阅读0次

    返回介于 0(包含) ~ 1(不包含) 之间的一个随机数:

    返回值是0.0 ~ 1.0(不包含) 之间的一个伪随机数。

    Math.random();
    
    返回介于 1 到 10 之间的一个随机数:
    Math.floor((Math.random()*10)+1);
    
    返回介于 1 到 100 之间的一个随机数:
    Math.floor((Math.random()*100)+1);
    
    返回 min(包含)~ max(不包含)之间的数字:
    function getRndInteger(min, max) {
      return Math.floor(Math.random() * (max - min) ) + min;
    }
    
    返回 min(包含)~ max(包含)之间的数字:
    function getRndInteger(min, max) {
      return Math.floor(Math.random() * (max - min + 1) ) + min;
    }
    

    相关文章

      网友评论

          本文标题:javascript之random()返回随机数

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