标签: javascript random mocking timestamp
我有一个任务来生成带有时间戳的随机模拟事件。
目前,我正在使用timestamp: Date.now()来处理它,但是我发现它太假了。我想生成带有相对近期时间戳并且也是随机的时间戳的事件。
timestamp: Date.now()
你们能建议一些这样做的方法吗?
答案 0 :(得分:2)
我会做Date.now()-Math.random()*(upperThreshold-lowerThreshold)+lowerThreshold
Date.now()-Math.random()*(upperThreshold-lowerThreshold)+lowerThreshold