Created
February 24, 2017 13:36
-
-
Save leovafme/f825bc3d4532cbbfca366ecc11d49092 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 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