--- title: Factorial id: 597b2b2a2702b44414742771 challengeType: 5 videoUrl: '' localeTitle: Factorial --- ## Description

Escribe una función para devolver el factorial de un número.

El factorial de un número viene dado por:

¡norte! = n * (n-1) * (n-2) * ..... * 1

Por ejemplo: 3! = 3 * 2 * 1 = 6 4! = 4 * 3 * 2 * 1 = 24

Nota: 0! = 1

## Instructions
## Tests
```yml tests: - text: factorial es una función. testString: 'assert(typeof factorial === "function", "factorial is a function.");' - text: factorial(2) debe devolver un número. testString: 'assert(typeof factorial(2) === "number", "factorial(2) should return a number.");' - text: factorial(3) debe devolver 6. ") testString: 'assert.equal(factorial(3),results[0],"factorial(3) should return 6.");' - text: factorial(3) debe devolver 120. ") testString: 'assert.equal(factorial(5),results[1],"factorial(3) should return 120.");' - text: 'factorial(3) debe devolver 3,628,800. ")' 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 ```