JS Adicionar semana até o momento


var testDate = new Date();
testDate.setDate(testDate.getDate() + 7);

Dark Dunlin