--- id: 5900f3701000cf542c50fe83 challengeType: 5 title: 'Problem 4: Largest palindrome product' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(largestPalindromeProduct(2), 9009, "largestPalindromeProduct(2) should return 9009.");' - text: '' testString: 'assert.strictEqual(largestPalindromeProduct(3), 906609, "largestPalindromeProduct(3) should return 906609.");' ```
## Challenge Seed
```js function largestPalindromeProduct(n) { // Good luck! return true; } largestPalindromeProduct(3); ```
## Solution
```js // solution required ```