New to KendoReact? Start a free 30-day trial
durationInCenturies
durationInCenturiesPremium
A function that calculates duration in centuries between two Date
objects.
ts
durationInCenturies(new Date(2016, 0, 1), new Date(3216, 0, 1)); // 12
durationInCenturies(new Date(2016, 6, 1), new Date(2617, 0, 1)); // 6
durationInCenturies(new Date(2016, 0, 1), new Date(2016, 0, 1)); // 0
Parameters
start
Date
The start date value.
end
Date
The end date value.
Returns
number
- The duration in months.