augustinmauroy.github.io
I love this api. It’s also allow to format currency and much more
I love this api. It’s also allow to format currency and much more
```
const formatter = new Intl.DateTimeFormat('en-CA', {
year: 'numeric',
month: '2-digit',
day: '2-digit',
timeZone: 'UTC'
});
```
work better
```
const formatter = new Intl.DateTimeFormat('en-CA', {
year: 'numeric',
month: '2-digit',
day: '2-digit',
timeZone: 'UTC'
});
```
work better