как я могу добавить хранилище в этот код?
Когда пользователь обновляет страницу, я sh сообщаю, что отсчет не начинается с 0. Спасибо
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function random_countdown(hour_sel, min_sel, sec_sel) {
random_hour = getRandomInt(3, 3)
random_min = getRandomInt(14, 14)
random_sec = getRandomInt(59, 59)
setInterval(function() {
random_sec = random_sec - 1;
if (random_sec < 0) {
random_sec = 59
random_min = random_min - 1
}
if (random_min < 0) {
random_min = 59
random_hour = random_hour - 1
}
jQuery(hour_sel).text(random_hour)
jQuery(min_sel).text(random_min)
jQuery(sec_sel).text(random_sec)
// console.log (random_hour+' '+random_min+' '+random_sec)
}, 1000)
}
random_countdown('.hours_sel', '.minutes_sel', '.seconds_sel')