JavaScript Named and Default Exports

# Default exports
const getFoo = function() {
    return "foo";
};

export default getFoot;

#file: default.js
#Named exports
export const getFooBar = function() {
    return "Foo Bar at Taiwan";
};

const getBar = function() {
    return "bar";
};

const getBaz = function() {
  return "baz";
};

export {getBar, getBaz};

#file: named.js
#import modules

import getFoo from "default.js";

import { getFooBar, getBar, getBaz } from "named.js";