--- title: Factorial id: 597b2b2a2702b44414742771 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof factorial === "function", "factorial is a function.");' - text: '' testString: 'assert(typeof factorial(2) === "number", "factorial(2) should return a number.");' - text: '' testString: 'assert.equal(factorial(3),results[0],"factorial(3) should return 6.");' - text: '' testString: 'assert.equal(factorial(5),results[1],"factorial(3) should return 120.");' - text: '' testString: 'assert.equal(factorial(10),results[2],"factorial(3) should return 3,628,800.");' ```
## Challenge Seed
```js function factorial (n) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```