Guest User

Untitled

a guest
Apr 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. (function() {
  2.  
  3. function factorial(n) {
  4. if (n <= 1) {
  5. return 1;
  6. }
  7. return factorial(n - 1) * n
  8. }
  9.  
  10. console.log(factorial(6))
  11.  
  12. })()
Add Comment
Please, Sign In to add comment