Skip to content

Instantly share code, notes, and snippets.

View nataliebanegas's full-sized avatar

Natalie Banegas nataliebanegas

View GitHub Profile
@nataliebanegas
nataliebanegas / script.js
Created July 30, 2013 22:24
A CodePen by Natasha Banegas. JavaScript Prototypal Inheritance 1
var Shape = {
description: "Basic Shape",
getDesciption: function() {
return this.description;
}
};
console.log(Shape.description); // Returns 'Basic Shape'
var Triangle = Object.create(Shape);