I get an object Date whith format ( YYYY-MM-DD) and I want to create an object and add one day to this object ( if my object is 2020-03-10, I would like to get 2020-03-11), how can I do ?
this.mypensionsort.dtFin //the object Date
const dateDayPlusOne = new Date(this.mypensionsort.dtFin.getDate() + 1); //Doesn't work