Created
February 7, 2023 05:09
-
-
Save Risyandi/18fcad0315ee0d4bba2168a8fb9ea6a9 to your computer and use it in GitHub Desktop.
show you how to calculate time left to given date.
This file contains 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
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'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the reference article : https://dirask.com/posts/JavaScript-calculate-time-left-to-given-date-DlVdWj