Math对象为数学常量和函数提供属性和方法。与其他全局对象不同,Math不是构造函数。Math的所有属性和方法都是静态的,可以通过将Math作为对象来调用,而无需创建它。本文主要介绍JavaScript(JS) Math.random() 方法。

1、描述

该方法返回0(包括)和1(不包括)之间的一个随机数。

2、语法

其语法如下 ,

Math.random()

3、返回值

返回0(包含)和1(独占)之间的随机数。

4、使用示例

<html>
   <head>
      <title>JavaScript Math random() Method</title>
   </head>
   
   <body>
      <script type = "text/javascript">
         var value = Math.random( );
         document.write("Math.random( ) : " + value ); 
var value = Math.random( ); document.write("<br />Math.random( ) : " + value );
var value = Math.random( ); document.write("<br />Math.random( ) : " + value );
var value = Math.random( ); document.write("<br />Math.random( ) : " + value );
</script> </body> </html>

5、输出

Math.random( ) : 0.8508898888126055
Math.random( ) : 0.03595815369029465
Math.random( ) : 0.4843430123781465
Math.random( ) : 0.051251113341275634

推荐文档

相关文档

大家感兴趣的内容

随机列表