Constructors are Functions that get run when the Object is created.
A Constructor could look like this:
function Constructor(){
... code that will be run on creation ...
}
To create an object using the Constructor, use the 'make' statement:
var myObj <- make someClass(arguments);