MCQ
Which keyword is used to export a module in JavaScript?
JavaScript
A export
B exports
C module.exports
D All of the above
Explanation

export is used in ES modules, while exports and module.exports are used in CommonJS.