| 
									
										
										
										
											2018-09-30 23:01:58 +01:00
										 |  |  | --- | 
					
						
							|  |  |  | title: Factorial | 
					
						
							|  |  |  | id: 597b2b2a2702b44414742771 | 
					
						
							|  |  |  | challengeType: 5 | 
					
						
							| 
									
										
										
										
											2019-08-05 09:17:33 -07:00
										 |  |  | forumTopicId: 302263 | 
					
						
							| 
									
										
										
										
											2018-09-30 23:01:58 +01:00
										 |  |  | --- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Description
 | 
					
						
							|  |  |  | <section id='description'> | 
					
						
							| 
									
										
										
										
											2019-03-02 21:27:55 +09:00
										 |  |  | Write a function to return the factorial of a number. | 
					
						
							|  |  |  | Factorial of a number is given by: | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | <big>n! = n * (n-1) * (n-2) * ..... * 1</big> | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | For example: | 
					
						
							|  |  |  | <ul> | 
					
						
							| 
									
										
										
										
											2019-06-14 20:04:16 +09:00
										 |  |  |   <li><code>3! = 3 * 2 * 1 = 6</code></li> | 
					
						
							|  |  |  |   <li><code>4! = 4 * 3 * 2 * 1 = 24</code></li> | 
					
						
							| 
									
										
										
										
											2019-03-02 21:27:55 +09:00
										 |  |  | </ul> | 
					
						
							| 
									
										
										
										
											2019-06-14 20:04:16 +09:00
										 |  |  | <strong>Note:</strong> <code>0! = 1</code> | 
					
						
							| 
									
										
										
										
											2018-09-30 23:01:58 +01:00
										 |  |  | </section> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Instructions
 | 
					
						
							|  |  |  | <section id='instructions'> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </section> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Tests
 | 
					
						
							|  |  |  | <section id='tests'> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```yml | 
					
						
							| 
									
										
										
										
											2018-10-04 14:37:37 +01:00
										 |  |  | tests: | 
					
						
							|  |  |  |   - text: <code>factorial</code> is a function. | 
					
						
							| 
									
										
										
										
											2019-07-26 05:24:52 -07:00
										 |  |  |     testString: assert(typeof factorial === 'function'); | 
					
						
							| 
									
										
										
										
											2018-10-04 14:37:37 +01:00
										 |  |  |   - text: <code>factorial(2)</code> should return a number. | 
					
						
							| 
									
										
										
										
											2019-07-26 05:24:52 -07:00
										 |  |  |     testString: assert(typeof factorial(2) === 'number'); | 
					
						
							| 
									
										
										
										
											2019-03-19 15:04:03 +05:30
										 |  |  |   - text: <code>factorial(3)</code> should return 6. | 
					
						
							| 
									
										
										
										
											2019-07-24 05:06:12 -07:00
										 |  |  |     testString: assert.equal(factorial(3),results[0]); | 
					
						
							| 
									
										
										
										
											2019-03-19 15:04:03 +05:30
										 |  |  |   - text: <code>factorial(3)</code> should return 120. | 
					
						
							| 
									
										
										
										
											2019-07-24 05:06:12 -07:00
										 |  |  |     testString: assert.equal(factorial(5),results[1]); | 
					
						
							| 
									
										
										
										
											2019-03-19 15:04:03 +05:30
										 |  |  |   - text: <code>factorial(3)</code> should return 3,628,800. | 
					
						
							| 
									
										
										
										
											2019-07-24 05:06:12 -07:00
										 |  |  |     testString: assert.equal(factorial(10),results[2]); | 
					
						
							| 
									
										
										
										
											2018-09-30 23:01:58 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </section> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Challenge Seed
 | 
					
						
							|  |  |  | <section id='challengeSeed'> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <div id='js-seed'> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```js | 
					
						
							| 
									
										
										
										
											2019-03-02 21:27:55 +09:00
										 |  |  | function factorial(n) { | 
					
						
							| 
									
										
										
										
											2018-09-30 23:01:58 +01:00
										 |  |  |   // Good luck! | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### After Test
 | 
					
						
							|  |  |  | <div id='js-teardown'> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```js | 
					
						
							| 
									
										
										
										
											2018-10-20 21:02:47 +03:00
										 |  |  | const results=[6,120,3628800]; | 
					
						
							| 
									
										
										
										
											2018-09-30 23:01:58 +01:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </section> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Solution
 | 
					
						
							|  |  |  | <section id='solution'> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```js | 
					
						
							|  |  |  | function factorial(n) { | 
					
						
							|  |  |  |   let sum = 1; | 
					
						
							|  |  |  |   while (n > 1) { | 
					
						
							|  |  |  |     sum *= n; | 
					
						
							|  |  |  |     n--; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   return sum; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </section> |