Answers for "import/export js functions"

0

import/export js functions

// helloworld.js

export function helloWorld() {
    return 'Hello World!';
}

// main.js

import helloWorld from './helloworld.js';

console.log(helloWorld());
Posted by: Guest on June-02-2021

Browse Popular Code Answers by Language