// helloworld.js export function helloWorld() { return 'Hello World!'; } // main.js import helloWorld from './helloworld.js'; console.log(helloWorld());