Created
October 16, 2019 20:09
-
-
Save jerolan/ad94328e0e372a89928d61be71a56315 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function simpleAdding(num) { | |
let sum = 0; | |
for (let i = 0; i <= num; i++) sum += i; | |
return sum; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.