Привет всем хочу реализовать в сайте счетчика обратного отчета с двумя фиксирование датами но не получается прошу помаши, вот код
<ul class="timer" id="timer"></ul>
jQuery(document).ready(function($) {
let timer_start,timer_end, distance, hour,minut, second;
timer_start = new Date("2021-01-13 12:32:46").getTime();
timer_end = new Date("2021-01-14 12:32:46").getTime();
distance = ((timer_end - timer_start) / 1000);
let x = setInterval(()=> {
distance --
hour = Math.floor((distance / ( 3600 ) %24) );
minut = Math.floor((distance / 24 / 60 ) % 60)
second = Math.floor(distance % 60)
$('.timer').html('<li>'+hour+':</li><li>'+minut+':</li><li>'+second +'<li>')
}, 1000);
if (distance < 0) clearInterval(x);
});