動態載入模組

#JavaScript

whck6

export let go = () => {
  return "AAA";
};

(async () => {
  let Module = await import("./Module.js");
  console.log(Module.go()); // AAA
});