In JavaScript, you can easily go back a specified number of days from a given date using the setDate() method.
Question: How can I subtract X days from a plain JavaScript Date?
Answer:
To calculate the date X days before a given date:
For example, to calculate the date 5 days before today:
var d = new Date(); d.setDate(d.getDate() - 5);
Note:
Example:
var d = new Date(); document.write('Today is: ' + d.toLocaleString()); d.setDate(d.getDate() - 5); document.write('<br>5 days ago was: ' + d.toLocaleString());
The above is the detailed content of How to Subtract X Days from a JavaScript Date?. For more information, please follow other related articles on the PHP Chinese website!