In my react project I used moment js (jalali-moment -- no difference between them)
And now I want to show my date in 4part:
Today
1 day ago
2 day ago
and if date is more than 3 day ago show the date (2021-12-12)
what I mean? Example:
for example today is 2021-12-15
if post something in 2021-12-15 I want to show > today
if post something in 2021-12-14 I want to show > 1 day ago
if post something in 2021-12-13 I want to show > 2 day ago
if post something in 2021-12-12 I want to show > 2021-12-12
How can I dot it?