最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - convert days into month and remaining days using moment.js - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

3 Answers 3

Reset to default 6

You 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

发布评论

评论列表(0)

  1. 暂无评论