Email or username:

Password:

Forgot your password?
stressmanagement

function daysWithoutBeer() {
const lastBeer = new Date('2024-09-28');
const currentDate = new Date();
const difference = currentDate - lastBeer;
const daysWithoutBeer = Math.floor(difference / (1000 * 60 * 60 * 24));
return daysWithoutBeer;
}
const days = daysWithoutBeer();
console.log('В последний раз пил пиво ' + days + ' дн. назад');
// Вывод: В последний раз пил пиво 52 дн. назад

1 comment
Go Up