Default Exports by Jacob King June 20, 2025 JavaScript // multiply.js const multiply = (a, b) => a * b; export default multiply;