mlhaufe

Factorial

Jun 21st, 2011
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function fact(n) n > 0 && n * fact(n - 1) || 1;
Advertisement
Add Comment
Please, Sign In to add comment