I want to add days (say 15 days) to a date in input box having type text.
Text Box 1 on page load
Shows todays Date (dd/mm/yyyy) - [[Now.toISOString().substr(8,2)]]/[[Now.toISOString().substr(5,2)]]/[[Now.toISOString().substr(0,4)]]
26/08/2019
Now I want to show
Text Box 2 on page Load (dd/mm/yyyy) -
15/09/2019
Thanks very much it worked, need just one more help… [[Now.addDays(15).toLocaleDateString()]] this shows the date in mm/dd/yyyy format. How to convert it in dd/mm/yyyy format?