• 技术文章 >Web开发 >JavaScript

    js的math对象random()方法

    宋雪维宋雪维2021-01-08 09:29:37原创6738

    JavaScript中Math是一个对象方法,方法中有很很多方便好用的数学方法。对于我们想要在网页上随机显示一些名人名言和新闻事件。可以使用js的math对象random()方法,它生成0-1的随机数。本文向大家介绍Math.random() 方法。

    1、Math.random() 方法

    生成0-1的随机数,包含0,不包含1,结果是浮点数。这个方法没有参数。

    2、使用方法

    值 = Math.floor(Math.random() * 可能值的总数 + 第一个可能的值)

    3、返回值

    返回一个介于 0 和 1 之间的随机数

    4、使用实例

    console.log(Math.random());
    // 0.7069207248635578
     
    console.log(Math.random());
    // 0.765046694794209
     
    console.log(Math.random());
    // 0.14069121642698246

    Math.random() 方法非常实用,对于想去随机数的小伙伴来说,这个方法要掌握哦~

    专题推荐:js math对象 random法
    上一篇:js定时器清除 下一篇:js函数里面的return有什么用

    相关文章推荐

    • python中的binascii模块是什么?• Python中PIL库有何用法?• python中缺少module怎么办?• python中sys.stdout.write() 怎么用?• python中sys.stdout怎么用?• python中glob库是什么?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网