I want to add 7 days in the date using momentJs in angular project.
let nextRunAt = "2018-08-16T02:00:00.242Z";
let calculatedRunAt = moment(nextRunAt).add(7, 'days');
I am expecting to get the date after 7 days but instead I get moment object.
Any help is appreciated. Thanks