Last active
October 8, 2021 02:11
-
-
Save nguyenit67/9195357f56cc5067aef7aac6597a3d77 to your computer and use it in GitHub Desktop.
auto-generates month names in languages
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 months = [...Array(12).keys()].map(key => new Date(0, key).toLocaleString('en', { month: 'long' })) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment