mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-14 20:26:14 +09:00
Clean up the oopsie. Rebuild the blank exercises.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
var leapYears = function(year) {
|
||||
return year % 4 === 0 && ( year % 100 !== 0 || year % 400 == 0)
|
||||
var leapYears = function() {
|
||||
|
||||
}
|
||||
|
||||
module.exports = leapYears
|
||||
|
||||
Reference in New Issue
Block a user