--- id: 5900f37d1000cf542c50fe8f challengeType: 5 title: 'Problem 16: Power digit sum' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(powerDigitSum(15), 26, "powerDigitSum(15) should return 26.");' - text: '' testString: 'assert.strictEqual(powerDigitSum(128), 166, "powerDigitSum(128) should return 166.");' - text: '' testString: 'assert.strictEqual(powerDigitSum(1000), 1366, "powerDigitSum(1000) should return 1366.");' ```
## Challenge Seed
```js function powerDigitSum(exponent) { // Good luck! return true; } powerDigitSum(15); ```
## Solution
```js // solution required ```