Guest User

Untitled

a guest
Dec 15th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. <script type="text/javascript">
  2. function sumTo(n) {
  3. if(n!=1){
  4. return n+sumTo(n-1);
  5. }
  6. return n;
  7. }
  8. alert(sumTo(4));
  9. </script>
Add Comment
Please, Sign In to add comment