Skip to content

Instantly share code, notes, and snippets.

View JohnReedLOL's full-sized avatar

John-Michael Reed JohnReedLOL

View GitHub Profile
anonymous
anonymous / oop.js
Created July 16, 2017 16:38
Javascript Inheritance
// Super Base Class
function SuperBase() {}
// Base class
function Base(spec) {
this.name = spec.name; // Define the "name" property
}
// Child class
function Child(spec) {