Using JavaScript Fucntion need to set Date to 5 days into the Future. Select the Correction option?
Var myDate = new Date(); myDate.setDate(myDate.getDate()+5);
Var myDate = new Date(); myDate.setDate(myDate.getDate()-5);
Var myDate = new Date(); myDate.setDate(5);
None of the above.