html 随机数最大值和最小值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 随机数最大值和最小值相关的知识,希望对你有一定的参考价值。

/*
Random number max and min inclusive
*/


var max = 10;
var min = 2
var number = Math.max(Math.floor(Math.random() * max) + 1, min);
console.log(number);
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>

<script id="jsbin-javascript">
/*
Random number max and min inclusive
*/


var max = 10;
var min = 2
var number = Math.max(Math.floor(Math.random() * max) + 1, min);
console.log(number);
</script>



<script id="jsbin-source-javascript" type="text/javascript">/*
Random number max and min inclusive
*/


var max = 10;
var min = 2
var number = Math.max(Math.floor(Math.random() * max) + 1, min);
console.log(number);</script></body>
</html>

以上是关于html 随机数最大值和最小值的主要内容,如果未能解决你的问题,请参考以下文章

生成10个随机数保存于数组中,并找出其最大值和最小值

Js怎么产生随机数?

如何捕获 1000 个随机整数的最小值和最大值?

给定最小值、最大值、平均值和标准差,使用 Java 从分布中生成随机值

创建指定个数,指定最小值,最大值的随机数

java写:在100中的10个随机数中找出最大值和最小值