Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using momentJS for date calculations.

Here I want to change start of year for weeks calculation.

For me start of year will be 1-nov and end will be 31-oct.

or any other JS date lib that allows me to do the same.

share|improve this question

1 Answer

up vote 0 down vote accepted

Try this out:- http://jsfiddle.net/EvLmF/

var EndDate = moment([2008, 0, 29]);//End Date
var StartDate = moment([2007, 0, 28]);//Start Date

alert("Weeks : " + EndDate.diff(StartDate, 'weeks'));
alert("Days : " + EndDate.diff(StartDate, 'days'));
alert("Years : " + EndDate.diff(StartDate, 'years'));

So create new moment objects with your start date and end date and perform operations as required.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.