js type module code example
Example 1: import modules js html
<script type="module" src="main.js"></script>
Example 2: javascript import
import { module } from "./path"; // single module
import Module from "./path"; // default export
import Module, { module } from "./path"; // both