JS 编写一个指定范围内的随机数返回方法
Posted 洛阳之晨,譬如临安初雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 编写一个指定范围内的随机数返回方法相关的知识,希望对你有一定的参考价值。
function GetRandomNum(Min, Max) { var Range = Max - Min; var Rand = Math.random(); return Min + Math.round(Rand * Range); }
以上是关于JS 编写一个指定范围内的随机数返回方法的主要内容,如果未能解决你的问题,请参考以下文章