admin管理员组文章数量:1347158
For example I've 250 Days and I want to convert it into months and days using moment.js so do you have any idea how can I do that?
Example:
What I've: 250 Days
What I want: 8 Months and 7 Days
For example I've 250 Days and I want to convert it into months and days using moment.js so do you have any idea how can I do that?
Example:
What I've: 250 Days
What I want: 8 Months and 7 Days
Share
Improve this question
edited Aug 7, 2019 at 6:03
Ed Bangga
13k4 gold badges17 silver badges30 bronze badges
asked Aug 7, 2019 at 5:52
Kunal DholiyaKunal Dholiya
3852 gold badges6 silver badges21 bronze badges
3
- Do you need to count months forward or backward starting from the current date-time? – Ihor Sakailiuk Commented Aug 7, 2019 at 5:59
- 1 why is 250 days 8 months and seven days? 250 days from 1 jan 2019 is 8 months 7 days (going forward), but it's 8 months 8 days from 1 feb 2019, 8 months 5 days from 1 mar 2019, 8 months 6 days from 1 apr 2019 ... see the problem with "what you want"? – Jaromanda X Commented Aug 7, 2019 at 5:59
- This days being calculated from today and forward! – Kunal Dholiya Commented Aug 7, 2019 at 6:03
3 Answers
Reset to default 6You can use duration
together with diff
to get the duration between these 2 dates
const start = moment();
const end = moment().add(250, 'days');
const duration = moment.duration(end.diff(start));
const years = duration.years();
const months = duration.months();
const days = duration.days();
console.log(`years: ${years} months: ${months} days: ${days}`);
<script src="https://cdn.jsdelivr/momentjs/2.10.6/moment-with-locales.min.js"></script>
You can use diff and duration from moment to achieve this.
const currentDate = moment(new Date(), 'YYYY-MM-DD');
const futureDate = moment(currentDate).add(250, 'days');
const diff = moment.duration(futureDate.diff(currentDate));
console.log(`${diff.months()} Months and ${diff.days()} Days`);
// 8 Months and 6 Days
const futureDate = moment().add(250, 'days');
const duration = moment.duration(futureDate.diff(moment()));
console.log(`${duration.months()} Months and ${duration.days()} Days`);
<script src="https://cdnjs.cloudflare./ajax/libs/moment.js/2.24.0/moment.min.js"></script>
Note: it's a simplified example without edge-cases
本文标签: javascriptconvert days into month and remaining days using momentjsStack Overflow
版权声明:本文标题:javascript - convert days into month and remaining days using moment.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743831964a2546687.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论