Skip to content

Instantly share code, notes, and snippets.

@clauswitt
Created July 4, 2011 11:22
Show Gist options
  • Select an option

  • Save clauswitt/1063229 to your computer and use it in GitHub Desktop.

Select an option

Save clauswitt/1063229 to your computer and use it in GitHub Desktop.
getSquaresOfSum Function
var getSquareOfSum = function(max) {
res = 0;
for(var i=1;i<=max;i++) {
res += i;
}
res = res*res;
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment