Last active
April 4, 2022 22:47
-
-
Save crashmax-dev/29a55a19eb35619c643ad52963b21b4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const date = new Intl.DateTimeFormat('en', { | |
year: 'numeric', | |
hour: 'numeric', | |
minute: 'numeric', | |
second: 'numeric', | |
day: '2-digit', | |
month: '2-digit', | |
hour12: false | |
}) | |
console.log(date.format()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment