Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
new Date(Date.parse('2020-11-30') + 7 * 24 * 60 * 60 * 1000)
const d = new Date('2020-11-30') d.setDate(d.getDate() + 7)
var yourdate = new Date("2020-02-29"); yourdate.setDate(yourdate.getDate() + 3); var curr_date = yourdate.getDate(); var curr_month = yourdate.getMonth() + 1; var curr_year = yourdate.getFullYear(); alert(curr_year + "-" + curr_month + "-" + curr_date);