JavaScript 中的 Math.random() 函数

htmljavascriptweb developmentfront end technology

Math 对象的 random() 函数返回 0.0 到 1.0 之间的浮点随机数。范围为:0.0 =<Math.random< 1.0。可以使用算术运算实现不同的范围。

语法

其语法如下

Math.random();

示例

<html>
<head>
   <title>JavaScript 示例</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.random(48, 2);
      document.write("Result "+result);
   </script>
</body>
</html>

输出

结果 0.16413337253303162

相关文章