Leap Years done

This commit is contained in:
Mohammed Nabeel 2020-07-18 17:08:58 +03:00
parent 2249b5523c
commit 8bc9e3dc90
2 changed files with 35 additions and 21 deletions

View File

@ -1,4 +1,18 @@
const leapYears = function() {
const leapYears = function(yearToCheck) {
let isALeapYear = true;
if (yearToCheck % 4 === 0 && yearToCheck % 400 === 0) {
return true;
}
if (yearToCheck % 4 === 0 && yearToCheck % 100 != 0) {
return true;
}
return false;
}

View File

@ -4,19 +4,19 @@ describe('leapYears', function() {
it('works with non century years', function() {
expect(leapYears(1996)).toEqual(true);
});
xit('works with non century years', function() {
it('works with non century years', function() {
expect(leapYears(1997)).toEqual(false);
});
xit('works with ridiculously futuristic non century years', function() {
it('works with ridiculously futuristic non century years', function() {
expect(leapYears(34992)).toEqual(true);
});
xit('works with century years', function() {
it('works with century years', function() {
expect(leapYears(1900)).toEqual(false);
});
xit('works with century years', function() {
it('works with century years', function() {
expect(leapYears(1600)).toEqual(true);
});
xit('works with century years', function() {
it('works with century years', function() {
expect(leapYears(700)).toEqual(false);
});
});