--- title: S-Expressions id: 59667989bf71cf555dd5d2ff challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof parseSexpr === "function", "parseSexpr is a function.");' - text: '' testString: 'assert.deepEqual(parseSexpr(simpleSExpr), simpleSolution, "parseSexpr("(data1 data2 data3)") should return ["data1", "data2", "data3"]");' - text: '' testString: 'assert.deepEqual(parseSexpr(basicSExpr), basicSolution, "parseSexpr("(data1 data2 data3)") should return an array with 3 elements");' ```
## Challenge Seed
```js function parseSexpr(str) { // Good luck! return true; } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```