What will be the output of the below code in the console?
(Choose1answer)
File: my_module.js exports.name = 'Zeus';
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
Osh