You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Date/Write a JavaScript function...

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));