Skip to content

Instantly share code, notes, and snippets.

@TooTallNate
Created September 2, 2011 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save TooTallNate/1190122 to your computer and use it in GitHub Desktop.
Save TooTallNate/1190122 to your computer and use it in GitHub Desktop.
module.exports = function (a, b) {
return a + b
}
var add = require('./file1')
var result = add(1, 4)
console.log(result)
// 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment