Skip to content

Instantly share code, notes, and snippets.

@rubenmarcus
Created December 17, 2019 22:22
Show Gist options
  • Save rubenmarcus/396281a4eb260b47cd6b8e7a65816d73 to your computer and use it in GitHub Desktop.
Save rubenmarcus/396281a4eb260b47cd6b8e7a65816d73 to your computer and use it in GitHub Desktop.
function getDayName(dateString) {
const date = new Date(dateString);
const options = {
weekday: 'long'
};
return new Intl.DateTimeFormat('en-Us', options).format(date);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment