I have today's date like so:
var date = new Date();
var yyyy = date.getFullYear().toString();
var mm = (date.getMonth() + 1).toString();
var dd = date.getDate().toString();
var mmChars = mm.split('');
var ddChars = dd.split('');
var datestring = yyyy + '-' + (mmChars[1] ? mm : "0" + mmChars[0]) + '-' + (ddChars[1] ? dd : "0" + ddChars[0]);
Now what I am trying to do is add 5 days to the datestring
date, how would I do this?
My issue with this is, I have the date already formatted to my liking, I want to add 5 days to the already formatted date.