es6 javascript import and export explained code example
Example 1: js import and export
export function helloWorld() {
return 'Hello World!';
}
import helloWorld from './helloworld.js';
console.log(helloWorld());
Example 2: different types ways of export and import in javascript
import 'example';
import exampleDefaultExport from 'example';
import { property } from 'example';
import { property as exampleProperty } from 'example';
import * as example from 'example';
export var property = 'example property';
export function property() {};
export default 'example default';
var property = 'example property';
export { property };
export { property as exampleProperty };
export { property as exampleProperty } from 'example';
export * from 'example';