Answers for "is there a difference between 12 months and 1 year in js"

1

javascript date difference in months

function monthDiff(d1, d2) {
    var months;
    months = (d2.getFullYear() - d1.getFullYear()) * 12;
    months -= d1.getMonth();
    months += d2.getMonth();
    return months <= 0 ? 0 : months;
}
Posted by: Guest on May-27-2020
0

Difference in Months between two dates in JavaScript

function monthDiff(d1, d2) {
    var months;
    months = (d2.getFullYear() - d1.getFullYear()) * 12;
    months -= d1.getMonth();
    months += d2.getMonth();
    return months <= 0 ? 0 : months;
}
Posted by: Guest on April-08-2021

Code answers related to "is there a difference between 12 months and 1 year in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language