isLeapYear
Returns true if the given year is a leap year.
year(required): year number
utlx
isLeapYear(2024) // true (divisible by 4, not by 100, or by 400)
isLeapYear(2026) // false