I am working on an Angular project and when I'm sending the Date to the data.service. I have debugged that the date returned is correct {year:2020, month:11, day:02} but after moment(date).format("YYYY-MM-DD") a month is added to the date making it Invalid (13th month doesn't exist ).
moment(this.date).format("YYYY-MM-DD");
{year: 2020, month: 12, day: 4}
Invalid date
{year: 2020, month: 11, day: 4}
2020-12-04