Skip to content

Instantly share code, notes, and snippets.

@KennethanCeyer
Last active March 4, 2017 20:40
Show Gist options
  • Save KennethanCeyer/d4848af11711a3ab3f65653449b32c43 to your computer and use it in GitHub Desktop.
Save KennethanCeyer/d4848af11711a3ab3f65653449b32c43 to your computer and use it in GitHub Desktop.
Node.js module definition
var math = require('./math');
console.log(math.sum(1, 2));
module.exports = {
sum: function() {
var total = 0;
for (var idx in arguments) {
total += arguments[idx];
}
return total;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment