Discussion :: ExpressJS
-
What will be the output of the below code in the console?File: my_module.jsexports.name = 'Zeus';Code:var my_module = require('./mymodule');console.log((function(settings){return settings.split('').reverse().join('')})(my_module.name));
Answer : Option A
Explanation :
Be The First To Comment