Answers for "import and export"

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

Code answers related to "import and export"

Code answers related to "Javascript"

Browse Popular Code Answers by Language