Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
function getMSBeforeMidnight() { const today = new Date(); const tomorrow = new Date( today.getFullYear(), today.getMonth(), today.getDate() + 1, 0, 0, 0); return tomorrow.getTime() - today.getTime(); }
function getMSBeforeMidnight() { const d = new Date(); const currentTimestamp = d.getTime(); d.setDate(d.getDate() + 1); d.setHours(0); d.setMinutes(0); d.setSeconds(0); d.setMilliseconds(0); return d.getTime() - currentTimestamp; }
function getMSBeforeMidnight() { return 86400000 - (new Date()).getTime() % 86400000); }