Skip to content

Instantly share code, notes, and snippets.

@mosdevly
Created November 24, 2014 17:42
Show Gist options
  • Save mosdevly/ab993a34f5480abe8dde to your computer and use it in GitHub Desktop.
Save mosdevly/ab993a34f5480abe8dde to your computer and use it in GitHub Desktop.
Write a function that returns the sum of numbers up to a max number given.
var sums = function(num) {
myNum = 0;
for (var i = 0; i <= num; i++) {
myNum += i;
}
console.log(myNum);
}
sums(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment