美文网首页
js随机数

js随机数

作者: 木易先生灬 | 来源:发表于2019-05-17 14:12 被阅读0次
    // max - 期望的最大值
    // min - 期望的最小值
    parseInt(Math.random()*(max-min+1)+min,10);
    Math.floor(Math.random()*(max-min+1)+min);
    

    相关文章

      网友评论

          本文标题:js随机数

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