Skip to content

Instantly share code, notes, and snippets.

@KimTrijnh
Created January 12, 2019 18:03
Show Gist options
  • Save KimTrijnh/b6ec9c1ff1627e47b15f5eb27bfbe687 to your computer and use it in GitHub Desktop.
Save KimTrijnh/b6ec9c1ff1627e47b15f5eb27bfbe687 to your computer and use it in GitHub Desktop.
For OOP in FCC
function Dog() {
this.name = "Rupert";
this.color = "brown";
this.numLegs = 4;
}
// Add your code below this line
let hound = new Dog();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment