o
Size: a a a
o
АН
VM
Ш
IK
IK
Ш
Д
Д
Ш
Д
АН
Д
Ш
// функція для підрахунку днів, годин, хвилин і секунд до кінця акції
const endtime = '2021-01-30'
function getTimeRemaining(endtime) {
const time = Date.parse(endtime) - Date.parse(new Date)
const days = Math.floor(time / (1000*60*60*24))
const hours = Math.floor(time / (1000*60*60) % 24)
const minutes = Math.floor(time / (1000*60) % 60)
const seconds = Math.floor(time / 1000 % 60)
return {time, days, hours, minutes, seconds}
Ш
Ш
Ш
АН
АН
Ш