最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

datetime - Javascript, Time and Date: Getting the next day, week, month, year, etc - Stack Overflow

matteradmin6PV0评论

Based on a given millisecond timestamp, what's the 'correct' way to get the next day, week, month, year, etc.? That is, without having to do some kind of binary search with raw millisecond timestamp values or something silly like that.

Edit: Does using the Date constructor with a month, day, hour, etc. value beyond the limit translate it to the next year, month, day, etc.?

Based on a given millisecond timestamp, what's the 'correct' way to get the next day, week, month, year, etc.? That is, without having to do some kind of binary search with raw millisecond timestamp values or something silly like that.

Edit: Does using the Date constructor with a month, day, hour, etc. value beyond the limit translate it to the next year, month, day, etc.?

Share Improve this question edited Dec 9, 2010 at 23:19 Hamster asked Dec 9, 2010 at 22:38 HamsterHamster 3,1627 gold badges30 silver badges38 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4
function getNextDate()
  { 
   var today = new Date();
   var d = today.getDate();
   var m = today.getMonth();
   var y = today.getYear();

   var NextDate= new Date(y, m, d+1);
   var Ndate=NextDate.getMonth()+1+"/"+NextDate.getDate()+"/"+NextDate.getYear();
   alert(Ndate);
   }

If the millisecond timestamp that you have is (conveniently!) the number of milliseconds since 1970/01/01 then you can simply create a new Date object from the millisecond value new Date(milliseconds) and use it as outlined in Misnomer's answer.

If your timestamp is based from onther point in time then you can simply workout the offset (in milliseconds) from 1970/01/01 and subtract that from the timestamp before creating the Date object.

As always when dealing with dates, be clear if you are dealing in local or UTC times.

w3schools date object

w3schools full date reference

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far