Contact: aviboots(AT)netvision.net.il
41,610 questions
54,273 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 */