Skip to content

Instantly share code, notes, and snippets.

@tanyagupta
Created December 5, 2015 20:03
Show Gist options
  • Save tanyagupta/8f449150757427936ac0 to your computer and use it in GitHub Desktop.
Save tanyagupta/8f449150757427936ac0 to your computer and use it in GitHub Desktop.
BABY STEPS (Exercise 2 of 13)
var sum=0;
var arr=process.argv;
for (var i=2; i<arr.length; i++){
sum=sum+Number(arr[i]);
}
console.log(sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment