Last active
May 23, 2016 17:13
-
-
Save brianswisher/f9a63a05cd6612393f4641c343633786 to your computer and use it in GitHub Desktop.
GetTodayJS
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 getToday() { | |
| var today = new Date(); | |
| today.setHours(12); | |
| return today.toISOString(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment