Skip to content

Instantly share code, notes, and snippets.

@sayyedhammadali
Last active October 2, 2021 22:03
Show Gist options
  • Save sayyedhammadali/7f5a0cae881da2e438c45157213a5fd4 to your computer and use it in GitHub Desktop.
Save sayyedhammadali/7f5a0cae881da2e438c45157213a5fd4 to your computer and use it in GitHub Desktop.
Check if the provided day is a weekday
const isWeekday = (date) => date.getDay() % 6 !== 0;
console.log(isWeekday(new Date(2021, 0, 11)));
// Result: true (Monday)
console.log(isWeekday(new Date(2021, 0, 10)));
// Result: false (Sunday)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment