Skip to content

Instantly share code, notes, and snippets.

@amoilanen
Created March 23, 2017 14:41
Show Gist options
  • Save amoilanen/f5372960aee1c6701f73635e69f1031b to your computer and use it in GitHub Desktop.
Save amoilanen/f5372960aee1c6701f73635e69f1031b to your computer and use it in GitHub Desktop.
Lists all months names in the en-US locale in pure JavaScript (ES6)
function listMonths() {
var currentDate = new Date();
return Array.from(new Array(12), (_, monthIdx) => {
currentDate.setMonth(monthIdx);
return currentDate.toLocaleString("en-US", {month: "long"})
});
}
console.log(listMonths());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment