structure files with import export javascript code example
Example 1: javascript import class
//import it
import Example from './file2';
//Create an Instance
var myInstance = new Example()
myInstance.test()
Example 2: export function javascript
// module "mon-module.js"
export default function cube(x) {
return x * x * x;
}