Get previous date from given date in javascript

date
javascript
previous date

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:

Get previous date from given date in javascript

06-03-2017 date javascript previous date

Change datepicker display format

06-03-2017 datepicker angular js

Filters for convert text to camel case in Angular Js

05-03-2017 angularjs camelcase filters

How to set or update or push the values into Object in javacript

27-02-2017 javascript set update push object

Call a function every second or 5 seconds in javascript

22-02-2017 setinterval function calling