Created
May 12, 2014 14:22
-
-
Save cmcdevitt/c1ff335b3c7abcf4150d to your computer and use it in GitHub Desktop.
ServiceNow day of the week
This file contains 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
var gdt = new GlideDateTime(); | |
if(gdt.getDayOfWeek() == 7){ | |
gs.log("Today is Sunday"); | |
gs.addInfoMessage("Hello World"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment