My Spring Data REST returns a ZonedDateTime date format like 2022-04-29T00:00:00+02:00
and in TypeScript (Angular) I have dates as Sat Apr 23 2022 00:00:00 GMT+0200
.
My goal is to compare two date converting the ZonedDateTime to the required format in Angular. How to do that?
You can use both
Strings
as you already have them to create the Date object, using the constructor. The constructor understands both forms.Then you can compare both objects using the
getTime()
method which returns an absolute representation in miliseconds