Named Exports by Jacob King June 20, 2025 JavaScript // math.js export const add = (a, b) => a + b; export const subtract = (a, b) => a - b;