1 2 3 4 5 6 7 8 9
// CommonJS JavaScript file // CJS syntax module.exports = { // Object property comment greet: function () { // Function comment return "Hello CJS"; }, };