is there any possibity to get the next month from the current day ?
as example Today is 12/10/2020
i want to get the next month of 1/10/2021
any simple workaround ?
in php there is something like this
is there equivalent function in b4j ?
as example Today is 12/10/2020
i want to get the next month of 1/10/2021
any simple workaround ?
in php there is something like this
PHP:
$date = date('Y-m-d', strtotime('+1 month'));
is there equivalent function in b4j ?