Skip to content

Instantly share code, notes, and snippets.

@tonyfast
Created February 9, 2015 19:53
Show Gist options
  • Select an option

  • Save tonyfast/7b7df83b7b72a480f5e9 to your computer and use it in GitHub Desktop.

Select an option

Save tonyfast/7b7df83b7b72a480f5e9 to your computer and use it in GitHub Desktop.
MomentJS + UTC

Test case for MomentJS

<script src="//cdn.jsdelivr.net/g/momentjs"></script>
<script>
time = 'Wed May 29 20:22:58 UTC 2013';
t = moment().utc( time )
console.log('The formatted time is : ', t.format('dddd Do YY h:mm:ss a'));
console.log('The formatted time is : ', t.fromNow());
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment