Contact: aviboots(AT)netvision.net.il
39,872 questions
51,796 answers
573 users
function nextweek() { const today = new Date(); const nextweek = new Date(today.getFullYear(), today.getMonth(), today.getDate() + 7); return nextweek; } console.log(nextweek().toDateString()); /* run: "Sat Apr 09 2022" */