n! = n * (n-1) * (n-2) * ..... * 1For example:
3! = 3 * 2 * 1 = 64! = 4 * 3 * 2 * 1 = 240! = 1
factorial is a function.
testString: assert(typeof factorial === 'function');
- text: factorial(2) should return a number.
testString: assert(typeof factorial(2) === 'number');
- text: factorial(3) should return 6.
testString: assert.equal(factorial(3),results[0]);
- text: factorial(3) should return 120.
testString: assert.equal(factorial(5),results[1]);
- text: factorial(3) should return 3,628,800.
testString: assert.equal(factorial(10),results[2]);
```