Skip to content

Instantly share code, notes, and snippets.

@AbeEstrada
Last active October 14, 2024 15:33
Show Gist options
  • Save AbeEstrada/887dd737f81b5aef4888358b5a1db767 to your computer and use it in GitHub Desktop.
Save AbeEstrada/887dd737f81b5aef4888358b5a1db767 to your computer and use it in GitHub Desktop.
const formatDate = (date) =>
`${date.getFullYear()}/${String(date.getMonth() + 1).padStart(2, "0")}/${String(date.getDate()).padStart(2, "0")} ${String(date.getHours()).padStart(2, "0")}:${String(date.getMinutes()).padStart(2, "0")}:${String(date.getSeconds()).padStart(2, "0")}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment