Skip to content

Instantly share code, notes, and snippets.

@no23reason
Last active April 6, 2017 12:49
Show Gist options
  • Save no23reason/0425072ff7aa02e63f1f22e2cdc6e72a to your computer and use it in GitHub Desktop.
Save no23reason/0425072ff7aa02e63f1f22e2cdc6e72a to your computer and use it in GitHub Desktop.
For-loop tax Medium code snippets
const sum = (array) => {
let result = 0;
for (let i = 0; i < array.length; i++) {
result += array[i];
}
return result;
}
const numbers = [5, 25, 8, 18];
console.log(sum(numbers)); // logs 56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment