nark: 1
Total Marks: 50
(16)
Multiple Choices
Vol 8
Font: Microsoft Sans Serif
Size: 10
Time Left:56:55
What will this code log to the console?
(Choose 1 answer)
// File: person.js exports = "John";
// File: index.js const person = require("./person.js');console.log(person);
A. John
B. Undefined
C. {'John'}
D.