Skip to content

Instantly share code, notes, and snippets.

@nguyenit67
Last active October 8, 2021 02:11
Show Gist options
  • Select an option

  • Save nguyenit67/9195357f56cc5067aef7aac6597a3d77 to your computer and use it in GitHub Desktop.

Select an option

Save nguyenit67/9195357f56cc5067aef7aac6597a3d77 to your computer and use it in GitHub Desktop.
auto-generates month names in languages
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