Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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