Open xinconan opened 6 years ago
闰年的判断条件:
isLeapYear(year) { return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; }
闰年的判断条件: