Skip to content

Instantly share code, notes, and snippets.

@leovafme
Created February 24, 2017 13:36
Show Gist options
  • Select an option

  • Save leovafme/f825bc3d4532cbbfca366ecc11d49092 to your computer and use it in GitHub Desktop.

Select an option

Save leovafme/f825bc3d4532cbbfca366ecc11d49092 to your computer and use it in GitHub Desktop.
var now = moment(new Date()); //todays date
setTimeout(e=>{ var end = moment(new Date()); // another date
var duration = moment.duration(end.diff(now));
var days = duration.asSeconds();
console.log(days)}, 3400)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment