1// import the class
2// From (location of class)
3import Example from "Math.js";
4// Create a linked variable / instance of the class
5Example MyClass = new Example();
6// Check if class works
7MyClass.test();
8
1//import it
2import Example from './file2';
3//Create an Instance
4var myInstance = new Example()
5myInstance.test()