Reputation: 111
I need a countdown script to calculate the difference between two dates, in months, weeks, and days.
I know about timespan.js and countdown.js, but those scripts only work with days.
What script could I use for months and weeks?
preferable the dates are in the yyyy-mm-dd format
Upvotes: 0
Views: 2353
Reputation: 6648
Check the console
moment('2018-02-01 00:00:00');
Taken from: http://www.netengine.at/de/hilfe/wiki/wiki-detail/?wid=90
Upvotes: 2
Reputation:
How about moment.js? There is probably a 'months' feature? https://www.google.com/search?client=safari&rls=en&q=moment.js+difference+between+two+dates+in+months&ie=UTF-8&oe=UTF-8
Upvotes: 2