Skip to content

Instantly share code, notes, and snippets.

@trakhov
Created January 28, 2016 19:01
Show Gist options
  • Save trakhov/2f74f4a06d8785714f30 to your computer and use it in GitHub Desktop.
Save trakhov/2f74f4a06d8785714f30 to your computer and use it in GitHub Desktop.
function sum(ary) {
var result = 0;
for (var i = 0; i < ary.length; i++) {
result += ary[i];
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment