Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // module.js
- exports.y = 2;
- var x = 1;
- exports.foo = function(callbackfn) {
- return callbackfn(x * 2);
- };
- // app.js
- var module = require('./module.js');
- module.foo(function(x) {
- console.log(x);
- });
- console.log(module.y);
Advertisement
Add Comment
Please, Sign In to add comment