function startTimer(duration) { let timer = duration, days, hours, minutes, seconds; setInterval(function () { days = Math.floor(timer / (60*60*24)); hours = Math.floor((timer % (60*60*24)) / (60*60)); minutes = Math.floor((timer % (60*60)) / 60); seconds = timer % 60; // עדכון לתצוגה כאן if (--timer < 0) { timer = duration; // איפוס אוטומטי } }, 1000); } startTimer(3 * 24 * 60 * 60);