In my Angular project I am creating a moment object by passing a date string, which contain timezone information.
I would like to get rid of this information, and make sure that this date will always be same day, regardless of a timezone that I am currently in.
I could do this by splitting the date string like below:
let dateString = '2020-12-21T15:00:00+05:00'
let date = moment(dateString.split('T')[0])
But it is probably not the right approach to do this. Will the below code let me archive same thing?
let date = moment(dateString, YYYY-MM-DD)
In both cases, when I afterwards display the date, I would like to see same result: 2020-12-21 (regardless of the timezone that I am currently in):
console.log(date.format(YYYY-MM-DD)) // should always log 2020-12-21
Also, I found other posts that I should use utc method, but it is not working for me. I just want to totally get rid of timezone information, and create a moment in my timezone, because I am interested only in the date and not time
moment.utc(dateString);
will converts the time to UTC time (Moment<2020-12-21T18:00:00Z>
)Using
moment(date, format)
seems to be the correct approachIt's also slightly faster than the
.split
Usemoment.parseZone
insteadwhich is equivalent to
From moment docs:
But i think
moment(dateString.split('T')[0])
is also a right way to do this. It's also faster