--- title: Harshad or Niven series id: 595668ca4cfe1af2fb9818d4 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof isHarshadOrNiven === "function", "isHarshadOrNiven is a function.");' - text: '' testString: 'assert.deepEqual(isHarshadOrNiven(), res, "isHarshadOrNiven() should return {"firstTwenty": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 18, 20, 21, 24, 27, 30, 36, 40, 42],"firstOver1000": 1002}");' ```
## Challenge Seed
```js function isHarshadOrNiven () { const res = { firstTwenty: [], firstOver1000: undefined }; // Change after this line return res; } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```