如何使用 javascript 创建包含当前时间和接下来 10 个五分钟间隔时间的数组?
我需要像这样在 javascript 中创建一个数组。它应该包含当前时间+接下来的10次,间隔为5分钟
数组 = [1.45, 1.50, 1.55, 2.00, 2.05, 2.10, 2.15, 2.20, 2.25, 2.30];
我将如何使用 javascript 创建这种数组。
I need to create one array in javascript like this. It should contain current time + next 10 times with the interval of 5 mins
array = [1.45, 1.50, 1.55, 2.00, 2.05, 2.10, 2.15, 2.20, 2.25, 2.30];
How I will create this kind of an array using javascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用 Javascript 的 Date 对象。用小数来表示时间有点奇怪。毕竟,1.50 代表一个半小时,还是一小时五十分钟?
话虽如此,代码如下:
因此,
array
现在包含 10 个Date
对象。You should use Javascript's Date object. It's a little bit weird to use decimals to represent time. After all, does 1.50 stand for one hour and a half, or for one hour and fifty minutes?
Having said that, here is the code:
Therefore, the
array
now contains 10Date
objects.