module js 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
Example 3: js change a value in separate module
//moduleA.js
let object = {
a: 5,
};
export { object };
//moduleB.js
import { object } from './moduleA'
object.a = 6;
object.b = 1;