Guest User

Untitled

a guest
Jan 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. // Recursion
  2. function countTo(num) {
  3. if (num != 0) {
  4. console.log(num);
  5. countTo(num - 1);
  6. }
  7. }
  8. countTo(4); // 4 3 2 1
Add Comment
Please, Sign In to add comment