how to add a week to date object in javascript code example
Example: js add week to date
var testDate = new Date();
testDate.setDate(testDate.getDate() + 7);
var testDate = new Date();
testDate.setDate(testDate.getDate() + 7);