Guest User

Untitled

a guest
Mar 23rd, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. function factorial(n) {
  2. if (n == 0) {
  3. return 1;
  4. } else {
  5. return factorial(n - 1) * n;
  6. }
  7. };
  8. console.log(factorial(0));
Add Comment
Please, Sign In to add comment