Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save httpsterio/4eecbd70bf494095c83a2f1297a294cf to your computer and use it in GitHub Desktop.
Save httpsterio/4eecbd70bf494095c83a2f1297a294cf to your computer and use it in GitHub Desktop.
var result = 0
for (var i = 2; i < process.argv.length; i++) {
result += Number(process.argv[i])
}
console.log(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment