Guest User

Untitled

a guest
Dec 14th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. (function(n) {
  2. if (n < 2) {
  3. return 1;
  4. }
  5. return arguments.callee(n - 1) + arguments.callee(n - 2);
  6. })(10);
Add Comment
Please, Sign In to add comment