Is there any React-native library that helps getting the difference between two dates. I mean like the following.
Example
try using moment
import moment from 'moment'; { moment(date, 'YYYY-MM-DD') .month(0) .from(moment().month(0)) }
'YYYY-MM-DD' can be whatever format
this one is getting me the difference between the given date and now
here you can find documentation https://momentjs.com/docs/
and here more libraries https://blog.logrocket.com/4-alternatives-to-moment-js-for-internationalizing-dates/
2.1m questions
2.1m answers
60 comments
57.0k users