Есть скрипт вывода текущей даты в формате "29 августа 2018,Среда":
var now = new Date();
var dayNames = new Array("Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота");
var years = new Date();
var now = new Date();
var textout;
var month = now.getMonth();
var date = now.getDate();
textout = date;
if (month==0) textout+=" января";
if (month==1) textout+=" февраля";
if (month==2) textout+=" марта";
if (month==3) textout+=" апреля";
if (month==4) textout+=" мая";
if (month==5) textout+=" июня";
if (month==6) textout+=" июля";
if (month==7) textout+=" августа";
if (month==8) textout+=" сентября";
if (month==9) textout+=" октября";
if (month==10) textout+=" ноября";
if (month==11) textout+=" декабря";
var res;
res = ("<span> " + (textout) + " "+ years.getFullYear() +"," + dayNames[now.getDay() ] + "</span>" );
$('.filter__slider_title.sm').html(res);
Как прибавить три дня к текущей дате?