What is the simplest way to update a day or time from a given string. For example I have a moment date in the following format.
start: '2021-09-30T06:30:00-04:00'
expected output: '2021-09-29T06:30:00-04:00'
Now I want to keep the current time, but replace the date to 29th or 28th, or change the month. How would I do that, I am allowed to use the native JS Date or moment library but the point is the rest of the string must be the same, It should definitely keep the timezone offset.