Add date - script | Community
Skip to main content
March 8, 2019
Solved

Add date - script

  • March 8, 2019
  • 2 replies
  • 4012 views

Hi,

I want to add 10 days to the current date in the delivery, please help me with this

//I will get current date with this script below & need to add 10 days to it (current date + 10 days)

<%= formatDate(new Date(), "%2D %2B %4Y")%>

Regards,

Raaghu

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by bisswang

It should work with following code

<%  var date = new Date(); date.setDate(date.getDate() + 10); %><%= formatDate(date, "%2D %2B %4Y")%>

2 replies

bisswangAdobe EmployeeAccepted solution
Adobe Employee
March 8, 2019

It should work with following code

<%  var date = new Date(); date.setDate(date.getDate() + 10); %><%= formatDate(date, "%2D %2B %4Y")%>

RaaghuikAuthor
March 8, 2019

Hi Ramon,

It worked thanks.

Regards,

Raaghu