How Do I Remove Seconds from Date Object and Reconvert back to Date?
let testDate = new Date(2020, 05, 03, 1, 2);
This answer converts to ISO String, I dont want that, but return an actual Date.
Remove Seconds/ Milliseconds from Date convert to ISO String.