Created
March 26, 2018 12:08
-
-
Save dejanstojanovic/3a1b3db7a82a698bae686aaa6446b538 to your computer and use it in GitHub Desktop.
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
var today = new Date(); | |
var todayUtc = new Date(today.getUTCFullYear(),today.getUTCMonth(),today.getUTCDay(),today.getUTCHours(),today.getUTCMinutes(),today.getUTCSeconds(), today.getUTCMilliseconds()); | |
console.log(today.toString()); | |
console.log(todayUtc.toString()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment