Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sophiabrandt/72c78b9aa87236f4c086 to your computer and use it in GitHub Desktop.
Save sophiabrandt/72c78b9aa87236f4c086 to your computer and use it in GitHub Desktop.
function sumAll(arr) {
var max = Math.max(arr[0], arr[1]);
var min = Math.min(arr[0], arr[1]);
var temp = 0;
for (var i=min; i <= max; i++){
temp += i;
}
return(temp);
}
sumAll([1, 4]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment