Find the output of the below code if the file 'app.js' is executed.

file1.js:  

exports.a = "John"; 

file2.js: 

var a = require('./file1'); 
a.a = "Jack"; 

app.js: 

var a = new require('./file1'); 
var b = require('./file2'); 
console.log(a.a); 

John
Jack
Compilation error
None of the above
Verified Answer
Correct Option - b

To get all Infosys Certified Node Developer Exam questions Join Telegram Group https://rebrand.ly/lex-telegram-236dee

Telegram