na semana passada Data JS
function nextweek(){
const today = new Date();
const nextweek = new Date(today.getFullYear(), today.getMonth(), today.getDate()+7);
return nextweek;
}
Jolly Jay