Date Calculation

Hi there,

can i calculate like this ?

My Date is: 08.04.2020 + 2 Days ?

How can i do this ? Direct in Expression ?

Thanks,

If you want to do it in an Expression, something like that would be possible:

{{ new Date(new Date('2020-04-08').getTime()+(2*24*60*60*1000)).toISOString() }}
1 Like