Guest User

Untitled

a guest
Nov 19th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. function factorial(x) {
  2. if (x <= 1) return 1
  3. return x * factorial(x - 1)
  4. }
Add Comment
Please, Sign In to add comment