JS Modules: 08. Default function
by istiq20
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Default Function</title>
</head>
<body>
<script type="module">
// import { default as sayHelloDefault } from "./scripts/say-hello.js";
import sayHelloDefault from "./scripts/say-hello.js";
sayHelloDefault("Eko"); // Hello Eko, from default function
</script>
</body>
</html>
JavaScript
export default function (name) {
console.info(`Hello ${name}, from default function`);
}