/*Prototype is used to add properties/methods to a
constructor function as in example below */
function ConstructorFunction(name){
this.name = name //referencing to current executing object
}
ConstructorFunction.prototype.age = 18
let objectName = new ConstructorFunction("Bob")
console.log(objectName.age) //18