Skip to content

Instantly share code, notes, and snippets.

@RahmatSaeedi
Created June 26, 2019 20:06
Show Gist options
  • Save RahmatSaeedi/255488bd0a2887d8f8553eedcdb2c231 to your computer and use it in GitHub Desktop.
Save RahmatSaeedi/255488bd0a2887d8f8553eedcdb2c231 to your computer and use it in GitHub Desktop.
This JS file sums the input argumets and prints the sum to the console
// This JS file sums the input argumets and prints the sum to the console
// Example
// node sum 1 2
// 3
// node sum 10 -100 12
// 102
//
// jshint esversion: 6
const args = process.argv.slice(2);
let sum = 0;
args.forEach(n => sum += Number(n));
console.log(sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment