programming-examples/js/Date/Write a JavaScript function to get the amount of days of a year..js
2019-11-15 12:59:38 +01:00

12 lines
284 B
JavaScript

function days_of_a_year(year)
{
return isLeapYear(year) ? 366 : 365;
}
function isLeapYear(year) {
return year % 400 === 0 || (year % 100 !== 0 && year % 4 === 0);
}
console.log(days_of_a_year(2015));
console.log(days_of_a_year(2016));