Skip to content

Instantly share code, notes, and snippets.

@e-mihaylin
Created June 18, 2018 13:26
Show Gist options
  • Save e-mihaylin/c9ce956a665c728d98730b33c75c9691 to your computer and use it in GitHub Desktop.
Save e-mihaylin/c9ce956a665c728d98730b33c75c9691 to your computer and use it in GitHub Desktop.
function add() {
var c = 1000000000;
var args = Array.prototype.slice.call(arguments);
var sum = 0;
for (var i = 0; i < args.length; i++) sum += args[i] * c;
return (sum / c).toString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment