Created
May 7, 2015 16:13
-
-
Save iaian/68e97e71be9787d1b9a5 to your computer and use it in GitHub Desktop.
isWorkday
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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