odin-default-js-exercises/06_leapYears/leapYears.js

16 lines
284 B
JavaScript

const leapYears = function(input) {
if (input % 4 != 0) {
return false;
}
if(input % 4 == 0 && input % 400 == 0 || input % 100 != 0){
return true
}
if (input % 100 == 0 && input % 400 != 0) {
return false;
}
};
// Do not edit below this line
module.exports = leapYears;