Example

Example


function Vehicle( vehicleType ){

    // some sane defaults

    this.vehicleType = vehicleType || "car";

    this.model = "default";

    this.license = "00000-000";

}


Report Page