--- id: 5900f3911000cf542c50fea4 challengeType: 5 title: 'Problem 37: Truncatable primes' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(truncatablePrimes(8) == 1986, "truncatablePrimes(8) should return 1986.");' - text: '' testString: 'assert(truncatablePrimes(9) == 5123, "truncatablePrimes(9) should return 5123.");' - text: '' testString: 'assert(truncatablePrimes(10) == 8920, "truncatablePrimes(10) should return 8920.");' - text: '' testString: 'assert(truncatablePrimes(11) == 748317, "truncatablePrimes(11) should return 748317.");' ```
## Challenge Seed
```js function truncatablePrimes(n) { // Good luck! return n; } truncatablePrimes(11); ```
## Solution
```js // solution required ```