Skip to content

Instantly share code, notes, and snippets.

@Risyandi
Created February 7, 2023 05:09
Show Gist options
  • Save Risyandi/18fcad0315ee0d4bba2168a8fb9ea6a9 to your computer and use it in GitHub Desktop.
Save Risyandi/18fcad0315ee0d4bba2168a8fb9ea6a9 to your computer and use it in GitHub Desktop.
show you how to calculate time left to given date.
const now = new Date().getTime(); // current date
const futureDate = new Date('7 Feb 2023 16:40:00').getTime(); // setup time left
const timeleft = futureDate - now;
const days = Math.floor( timeleft / (1000 * 60 * 60 * 24));
const hours = Math.floor((timeleft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((timeleft % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((timeleft % (1000 * 60)) / 1000);
console.log(days + ' days ' + hours + ' hours ' + minutes + ' minutes ' + seconds + ' seconds left');
@Risyandi
Copy link
Author

Risyandi commented Feb 7, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment