Date in calculated field

Hi,
I have a date in a calculated field and I need to calculate the date plus 3 days for example. How to write it in Java Script. I also have a “signature date” field (2.1. 2023 - enter the date).The result 5.1.2023 should be displayed as a date.

Thanks

Hi,
Some tips about working with dates are already sorted out in FAQ. E.g.

Just keep on mind that we store the date as ISO string, so you need to convert it first.

new Date(new Date(myDate).setDate(new Date(myDate).getDate() + 3))

Regards
Michal