Skip to content

Instantly share code, notes, and snippets.

@Nata01
Last active December 17, 2015 16:12
Show Gist options
  • Save Nata01/0a724deefbd4592b1b84 to your computer and use it in GitHub Desktop.
Save Nata01/0a724deefbd4592b1b84 to your computer and use it in GitHub Desktop.
Summarizing recursive
function sumTo(n){
if(n != 1){
return n + sumTo(n-1);
}
else{
return 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment