Skip to content

Latest commit

 

History

History

8-factorial

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Factorial

Purpose

Implement function factorial

Example

factorial(3); // 3 * 2 * 1 = 6
factorial(5); // 5 * 4 * 3 * 2 * 1 = 120
factorial(0); // 1

Decisions