Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
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
Solved! Go to Solution.
It should work with following code
<% var date = new Date(); date.setDate(date.getDate() + 10); %><%= formatDate(date, "%2D %2B %4Y")%>
View solution in original post
Hi Ramon,
It worked thanks.
Views
Likes
Replies