Last active
July 30, 2018 09:16
-
-
Save rrameshbtech/206663a680d6b18f099938e617a979de to your computer and use it in GitHub Desktop.
How this works in nodes global
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
(function (exports, require, module, __filename, __dirname) { | |
//****Your code starts here****// | |
var city = 'Karur'; | |
console.log(this.city); // undefined | |
console.log(city); //Karur | |
//****Your code ends here****// | |
}); | |
var args = [self.exports, require, self, filename, dirname]; | |
return compiledWrapper.apply(self.exports, args); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment