4月6日--求指定范围的随机数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4月6日--求指定范围的随机数相关的知识,希望对你有一定的参考价值。
转换随机数为指定范围的整数
1、Math.floor(Math.random()*(MAX-MIN+1))+MIN
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Math的常用方法3</title> <script type="text/javascript"> var n=Math.random();//0-1 console.log(n); //转换随机数为指定范围的整数 //Math.floor(Math.random()*(MAX-MIN+1))+MIN //[0,100] // n=Math.floor(Math.random()*101); //[4,57] n=Math.floor(Math.random()*54)+4; console.log(n); </script> </head> <body> </body> </html>
以上是关于4月6日--求指定范围的随机数的主要内容,如果未能解决你的问题,请参考以下文章