We need to add one day for the given date. The given date is '24-03-2017'. By using the below javascript code get next 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 :
25-03-2017
You might also like:
Time Sorting Ascending or Descending Order in Javascript19-07-2017 Javascript ascending order descending order |
How to convert html to pdf in Node js12-03-2017 pdf convert html node js |
Remove last two characters from given string06-03-2017 substring javascript remove |
How to get drop down value when drop down change using javascript27-02-2017 onchange events dropdown javascript functions |
How to set or update or push the values into Object in javacript27-02-2017 javascript set update push object |