cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

is-leap-year.js (106B)


      1export function isLeapYear(year) {
      2    return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
      3}