CommonJS vs ES Modules

What is a key difference in how default exports work between these module systems?
// ES Modules
export default function() {}
export const named = {};

// CommonJS
module.exports = function() {}
module.exports.named = {};
Next Question (7/20)