I'm trying to obtain the current date and time in react native
I have tried like:
const today = new Date()
and it prints me
"2022-03-30T13:13:04.154Z"
but the real mine time is
"2022-03-30T15:13:04.154Z"
with timezone it-IT
I have tried also to use moment
but it gives me back the same results "2022-03-30T13:13:04.154Z"
How can I obtain the date and time with timezone?