- I need format type DateTime into: “dd/mm/yyyy”.
- I want to add, sub, compare between 2 DateTime.
ex: 23/12/1991 > 2/1/1990.
23/12/1991 – 20(days) = 3/12/1991
Could you help me, please.! Thank very much.! ^^
I need format type DateTime into: dd/mm/yyyy. I want to add, sub, compare between
Share
To get that format use:
To add to a date:
and so on
To subtract from a date
and so on
And any date objects can be compared with the normal
> < <= >=operators.