Js 从时间范围内取随机时间

Posted SUBUG

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Js 从时间范围内取随机时间相关的知识,希望对你有一定的参考价值。

废话不说 直接上代码

1     onGetTimeFrameToTime(starTime, endTime) {
2         let m = new Date(starTime);
3         let mt = m.getTime();
4         let n = new Date(endTime);
5         let nt = n.getTime();
6         let s = nt - mt;
7         let sm = Math.floor(Math.random() * s);
8         return new Date(mt + sm);
9     }

 

以上是关于Js 从时间范围内取随机时间的主要内容,如果未能解决你的问题,请参考以下文章

随机模块(import random)

Python——模块——随机模块

求js指定时间范围对页面进行刷新代码

python random随机模块

原生JS实现随机点名项目

js如何生成指定范围内的随机数