Leap Years done
This commit is contained in:
parent
2249b5523c
commit
8bc9e3dc90
|
@ -1,5 +1,19 @@
|
||||||
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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = leapYears
|
module.exports = leapYears
|
|
@ -1,22 +1,22 @@
|
||||||
const leapYears = require('./leapYears')
|
const leapYears = require('./leapYears')
|
||||||
|
|
||||||
describe('leapYears', function() {
|
describe('leapYears', function() {
|
||||||
it('works with non century years', function() {
|
it('works with non century years', function() {
|
||||||
expect(leapYears(1996)).toEqual(true);
|
expect(leapYears(1996)).toEqual(true);
|
||||||
});
|
});
|
||||||
xit('works with non century years', function() {
|
it('works with non century years', function() {
|
||||||
expect(leapYears(1997)).toEqual(false);
|
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);
|
expect(leapYears(34992)).toEqual(true);
|
||||||
});
|
});
|
||||||
xit('works with century years', function() {
|
it('works with century years', function() {
|
||||||
expect(leapYears(1900)).toEqual(false);
|
expect(leapYears(1900)).toEqual(false);
|
||||||
});
|
});
|
||||||
xit('works with century years', function() {
|
it('works with century years', function() {
|
||||||
expect(leapYears(1600)).toEqual(true);
|
expect(leapYears(1600)).toEqual(true);
|
||||||
});
|
});
|
||||||
xit('works with century years', function() {
|
it('works with century years', function() {
|
||||||
expect(leapYears(700)).toEqual(false);
|
expect(leapYears(700)).toEqual(false);
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
Reference in New Issue