functon isLeapYear(year) {
// 平年2月有28天,闰年2月有29天;平年一年有365天,闰年一年有366天。
// 闰年是公历中的名词,分为普通闰年和世纪闰年。 其中,普通闰年指公历年份是4的倍数的,且不是100的倍数,为普通闰年,如2004、2020年。
// 世纪闰年指的是公历年份是整百数的,必须是400的倍数才是世纪闰年,如1900年不是世纪闰年,2000年是世纪闰年。
// “四年一闰,百年不闰,四百年再闰。”
// 年份能被4整除,但不能被100整除是闰年
// 年份能被400整除是闰年
if (((year % 4) == 0) && ((year % 100) !=0) || ((year % 400) == 0)) {
return true
}
return false
}
isLeapYear(2021) // false