Skip to content

Instantly share code, notes, and snippets.

@procarrera
Last active August 29, 2021 15:45
Show Gist options
  • Save procarrera/38de7783e3ffc156f61bbca4225f9b9d to your computer and use it in GitHub Desktop.
Save procarrera/38de7783e3ffc156f61bbca4225f9b9d to your computer and use it in GitHub Desktop.
toLocaleDateString en-CA
var date = new Date("2021-09-01T03:00:00.000Z");
var options = { weekday: 'long', month: 'long', day: '2-digit', year: "numeric" };
console.log(date.toLocaleDateString('en-CA', options).replace(', ',' - '));
/* OUTPUT */
// Wednesday - September 01, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment