i have a start date string \"20.03.2014\" and i want to add 5 days to this with moment.js but i don\'t get the new date \"25.03.2014\" in the alert window.
here my j
You can add days in different formats:
// Normal adding moment().add(7, 'days'); // Short Hand moment().add(7, 'd'); // Literal Object moment().add({days:7, months:1});
See more about it on Moment.js docs: https://momentjs.com/docs/#/manipulating/add/