We need to substract one day for the given date. The given date is '24-03-2017'. By using the below javascript code get previous date.
var date = '24-03-2017'; var nextday = new Date(date.setTime( date.getTime() - 1 * 86400000 ));
var day = nextday.getDate(); var months = (nextday.getMonth() + 1); // Months use 0 index. var nextdate= nextday.getFullYear()+'-'+(months[1] ? month : '0'+ months[0]) + '-' + (day[1] ? day : '0'+ day[0]);
The result is :
22-03-2017
You might also like:
Convert and download html to pdf without saving file28-10-2018 node js convert html to pdf pdf download pdf without saving |
How to insert bulk information into database in single query execution18-03-2017 insert sql bulk database |
How to make an http request in node js14-03-2017 http module node js |
How to change background color and color to the text using javascript27-02-2017 css javascript colors |
Email validation regular expression in javascript22-02-2017 email validation regex |