Created
June 14, 2020 16:11
-
-
Save renan/6a84136827ec02656b161fb56385aa33 to your computer and use it in GitHub Desktop.
This file contains 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 Date(Date.UTC(2020, 04, 14, 3, 0, 0)); | |
const options = { month: "long", day: "numeric" }; | |
console.log(new Intl.DateTimeFormat('en-US', options).format(date)); | |
console.log(new Intl.DateTimeFormat('fr-FR', options).format(date)); | |
console.log(new Intl.DateTimeFormat('it-IT', options).format(date)); | |
console.log(new Intl.DateTimeFormat('nl-NL', options).format(date)); |
Author
renan
commented
Jun 14, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment