Skip to content

Instantly share code, notes, and snippets.

@jerolan
Created October 16, 2019 20:09
Show Gist options
  • Save jerolan/ad94328e0e372a89928d61be71a56315 to your computer and use it in GitHub Desktop.
Save jerolan/ad94328e0e372a89928d61be71a56315 to your computer and use it in GitHub Desktop.
function simpleAdding(num) {
let sum = 0;
for (let i = 0; i <= num; i++) sum += i;
return sum;
}
@jerolan
Copy link
Author

jerolan commented Oct 16, 2019

function simpleAdding(num) {
  return (num * (1 + num)) / 2;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment