function leapYear(year) { return ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0); }
1.4m articles
1.4m replys
5 comments
57.0k users