Instantiate JS
function employer(name) { this.name = name;};
var fred = new employer('Fred');
Aggressive Alligator
function employer(name) { this.name = name;};
var fred = new employer('Fred');
//The process of creating objects from a class
function constructorFunction(){}
let myObj = new constructorFunction()