如何使用 javascript 创建包含当前时间和接下来 10 个五分钟间隔时间的数组?

发布于 2025-01-07 19:32:19 字数 196 浏览 2 评论 0原文

我需要像这样在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神妖 2025-01-14 19:32:19
var date = new Date(), interval=5, arr=[];
for(var i=0;i<10;i++){
  date.setMinutes(date.getMinutes() + interval);
  arr.push(date.getHours() + '.' + date.getMinutes());
}
/*
arr is the array you want.
e.g. ["21.17", "21.22", "21.27", "21.32", "21.37", "21.42", 
        "21.47", "21.52", "21.57", "22.2"]
*/
var date = new Date(), interval=5, arr=[];
for(var i=0;i<10;i++){
  date.setMinutes(date.getMinutes() + interval);
  arr.push(date.getHours() + '.' + date.getMinutes());
}
/*
arr is the array you want.
e.g. ["21.17", "21.22", "21.27", "21.32", "21.37", "21.42", 
        "21.47", "21.52", "21.57", "22.2"]
*/
作妖 2025-01-14 19:32:19

您应该使用 Javascript 的 Date 对象。用小数来表示时间有点奇怪。毕竟,1.50 代表一个半小时,还是一小时五十分钟?

话虽如此,代码如下:

array = [];
var d = new Date();
for (var i = 0; i < 10; i++){
  array.push( d );
  d = new Date( d.getTime() + 5*60*1000 );  // 5 minutes in milliseconds
}

因此,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:

array = [];
var d = new Date();
for (var i = 0; i < 10; i++){
  array.push( d );
  d = new Date( d.getTime() + 5*60*1000 );  // 5 minutes in milliseconds
}

Therefore, the array now contains 10 Date objects.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文