I try to get this format with angular formatDate
"2019-01-01T00:00:00Z"
So I use this code
formatDate(
'2019-01-01',
'yyyy-MM-ddT00:00:00Z',
'en-US'
)
The result is 2019-01-01T00:00:00+0200
Z is replaced by the zone. There is a valid way to make the format I need ?