Skip to content

Instantly share code, notes, and snippets.

@Davisonpro
Created July 24, 2023 21:13
Show Gist options
  • Save Davisonpro/23742f0b357222555361f279cd1d22f1 to your computer and use it in GitHub Desktop.
Save Davisonpro/23742f0b357222555361f279cd1d22f1 to your computer and use it in GitHub Desktop.
// Get the day of the week
const daysOfWeek = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
const dayOfWeek = daysOfWeek[currentDateTime.getDay()];
// Display all date and time information in the span element
datetimeDisplayElement.textContent = `Day of the Week: ${dayOfWeek}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment