Skip to content

Instantly share code, notes, and snippets.

@t32k
Last active November 8, 2019 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t32k/9197b8166adce4d0fc636ef4897023cf to your computer and use it in GitHub Desktop.
Save t32k/9197b8166adce4d0fc636ef4897023cf to your computer and use it in GitHub Desktop.
const getFormattedDate = date => {
return new Intl.DateTimeFormat("ja", {
year: "numeric",
month: "2-digit",
day: "2-digit",
hour: "2-digit",
minute: "2-digit",
second: "2-digit",
timeZone: "Asia/Tokyo"
}).format(date);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment