JS随机数生成公式

<!DOCTYPE html>
<html>
<head>
	<title>随机公式</title>
</head>
<script type="text/javascript">
	// 0~1 之间的随机数 
	console.log(Math.random());
	 // 0-10
    console.log(Math.round(Math.random()*10));
	//0~20 之间的随机数
	console.log(Math.round(Math.random()*20));
     // 0-x 之间的随机数
    console.log(Math.round(Math.random()*x));


	//5-10 之间的随机数
	console.log(Math.round(Math.random()*5+5));
	//100~1000 之间的随机数
    console.log(Math.round(Math.random()*900+100));
    //1000-2000
    console.log(Math.round(Math.random()*1000+1000));
    // x-y 之间的随机数
    console.log(Math.round(Math.random()*(y-x)+x));


    // 1-x 之间的随机数
    // ceil()向上取整
    console.log(Math.ceil(Math.random()*x));

   
   
</script>
<body>

</body>
</html>

版权声明:本文为LZhizi原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。