I am using firebase toDate()
-method to get a Date object from my timestamp:
myTimestamp.toDate()
This creates a Date
-object (which I need), but in local time (the time my operating system uses). How can I get it to give me a Date
-Object in CEST/CET?
edit:
The timestamp comes from firebase and I am using their toDate()
method.