Created
June 13, 2014 16:57
-
-
Save hendrikcech/505bb35125db839b9f6e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var local = 'this is local to file1' | |
| module.exports = 'this is exported by file1' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var file1Export = require('./file1.js') | |
| console.log(file1Export) // output: 'this is exported by file1' | |
| console.log(local) // output: undefined (or something) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
that'd a thrown
ReferenceError: local is not defined