Found such a timer code on js:
const second = 1000,//ms minute = second * 60, hour = minute * 60, day = hour * 24; let countDown = new Date('Sep 30, 2019 00:00:00').getTime(), x = setInterval(function() { let now = new Date().getTime(), distance = countDown - now; document.getElementById('days').innerText = Math.floor(distance / (day)), document.getElementById('hours').innerText = Math.floor((distance % (day)) / (hour)), document.getElementById('minutes').innerText = Math.floor((distance % (hour)) / (minute)), document.getElementById('seconds').innerText = Math.floor((distance % (minute)) / second); }, second) Please explain why you can’t just take a date and count from it without using distance ? I also changed math.floor to math.round then completely different numbers were, how to understand what to use? And the last question, why is the balance taken there % ? Thanks in advance.
math.round, and there instead of658->659, that is, why exactly thefloor. And about the remainder, I do not understand why it is also impossible to share, why use it? Thank. - Timurmath.floordoes, and whatmath.rounddo? The above links to the description of these functions. - Grundy