How to format a JavaScript date - Stack Overflow

PHOTO EMBED

Wed Jan 12 2022 19:24:10 GMT+0000 (Coordinated Universal Time)

Saved by @yuio #javascript

{ // example 1
   let f = new Intl.DateTimeFormat('en');
   let a = f.formatToParts();
   console.log(a);
}
{ // example 2
   let f = new Intl.DateTimeFormat('hi');
   let a = f.formatToParts();
   console.log(a);
}
content_copyCOPY

https://stackoverflow.com/questions/3552461/how-to-format-a-javascript-date