This article mainly introduces how to obtain a date in a range using JavaScript, and involves related techniques related to date operations using javascript, for more information about how to use JavaScript to obtain a date in the specified range, see the following example. Share it with you for your reference. The specific analysis is as follows:
Specify the start time and end time, and put all the dates in the range into the array
Date. prototype. addDays = function (days) {var dat = new Date (this. valueOf (); dat. setDate (dat. getDate () + days); return dat ;}; function getDates (startDate, stopDate) {var dateArray = []; var currentDate = startDate; while (currentDate <= stopDate) {dateArray. push (self. formatDate (currentDate); currentDate = currentDate. addDays (1) ;}return dateArray ;}
I hope this article will help you design javascript programs.