--- id: 5900f37f1000cf542c50fe92 challengeType: 5 title: 'Problem 19: Counting Sundays' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(countingSundays(1943, 1946), 6, "countingSundays(1943, 1946) should return 6.");' - text: '' testString: 'assert.strictEqual(countingSundays(1995, 2000), 9, "countingSundays(1995, 2000) should return 9.");' - text: '' testString: 'assert.strictEqual(countingSundays(1901, 2000), 171, "countingSundays(1901, 2000) should return 171.");' ```
## Challenge Seed
```js function countingSundays(firstYear, lastYear) { // Good luck! return true; } countingSundays(1943, 1946); ```
## Solution
```js // solution required ```