Skip to content

Instantly share code, notes, and snippets.

@molcik
Last active September 21, 2017 07:08
Show Gist options
  • Save molcik/9a65bccbf2869bab42199cf283c21559 to your computer and use it in GitHub Desktop.
Save molcik/9a65bccbf2869bab42199cf283c21559 to your computer and use it in GitHub Desktop.
var array = [1, 1, 1];
var current = 0;
var result;
for (var i=0, len=array.length; i<len;i++) {
current += array[i];
}
result = current;
console.log(result); // logs 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment