Vorrei che una variabile contenga la data di ieri nel formato che DD-MM-YYYY
utilizza Moment.js. Quindi se oggi è il 15-04-2015, vorrei sottrarre un giorno e avere il 14-4-2015.
Ho provato alcune combinazioni come questa:
startdate = moment().format('DD-MM-YYYY');
startdate.subtract(1, 'd');
e questo:
startdate = moment().format('DD-MM-YYYY').subtract(1, 'd');
e anche questo:
startdate = moment();
startdate.subtract(1, 'd');
startdate.format('DD-MM-YYYY')
Ma non lo capisco ...
format()
è la funzione che lo rende una stringa. Dovresti farlo per ultimo.