js add week to date

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


Source

Also in JavaScript: