export.js 140 B

12345678
  1. export let a = "hello";
  2. export function b() {
  3. console.log("world");
  4. }
  5. // export default function () {
  6. // console.log("world");
  7. // }