(41nark: 1
Multiple Choices
Total Marks: 50
Vol 8
Font: Microsoft Sans Serif
Size: 10
Time Left:52:33
Answer (Choose 1 answer)
File: my_module.js exports.name = 'Zeus';
What will be the output of the below code in the console?
Code:
var my_module = require('./mymodule');console.log((function(settings){return settings.split(").reverse().join(")})(my_module.name));
A. Error
B. Zeus
C. undefined
D. sueZ