Skip to content

Instantly share code, notes, and snippets.

@iaian
Created May 7, 2015 16:13
Show Gist options
  • Save iaian/68e97e71be9787d1b9a5 to your computer and use it in GitHub Desktop.
Save iaian/68e97e71be9787d1b9a5 to your computer and use it in GitHub Desktop.
isWorkday
function isWorkday() {
var date = new Date,
thisHour = date.getHours();
if (thisHour < 9 || thisHour > 16 ) {
return false;
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment