Skip to content

Instantly share code, notes, and snippets.

@Nata01
Created December 17, 2015 16:19
Show Gist options
  • Save Nata01/871ab58e048350291215 to your computer and use it in GitHub Desktop.
Save Nata01/871ab58e048350291215 to your computer and use it in GitHub Desktop.
Summarizing using loop.
function sumTo(n){
rez = 0;
for(var i = 0; i <= n; i++){
rez += i;
}
return rez;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment