This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
Idiot-Code-Golf/leap-year/leap.js

2 lines
126 B
JavaScript

// not very clever, but still a valid solution
function isLeapYear(a){return a%4!=0?false:a%400==0?true:a%100!=0?true:false;}