I'm in trouble with dates.
Note: I'm into Europe/Rome timezone.
I have the following date
....
new Date("2019-04-03T00:00:00+02:00")
it returns: Wed Apr 03 2019 00:00:00 GMT+0200 (Ora legale dell’Europa centrale)
....
If I change timezone (GMT -4) on my PC it returns, for example,
....
new Date("2019-04-03T00:00:00+02:00")
it returns: Tue Apr 02 2019 18:00:00 GMT-0400 (GMT-04:00)
....
What I want to do is to the date (2019-04-03T00:00:00+02:00) to a user's calendar without consider users timezone (even if it is in Canada I want to display on the user calendar Europe/Rome timezone.
Do you have any suggestions?
Thank you