within my Angular app : i'm receiving this format date from webservice :
myDate = "2020-03-05T08:00:00"
-> for me it's the fifth march 2020
-> for chrome , firefox , IE it's alse the same format yyyy-mm-ddThh:mm:ss
But for Safari , it seems to confuse it with :
yyyy-dd-mmThh:mm:ss
-> and it reads it as it's the 3rd My 2020
****Am i alright ?****
My purpose is to get the time and i'm using to do new Date(myDate)
should i do it differently with Safari ?