Skip to content

Instantly share code, notes, and snippets.

@dejanstojanovic
Created March 26, 2018 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dejanstojanovic/3a1b3db7a82a698bae686aaa6446b538 to your computer and use it in GitHub Desktop.
Save dejanstojanovic/3a1b3db7a82a698bae686aaa6446b538 to your computer and use it in GitHub Desktop.
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