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