Last active
December 10, 2016 19:17
-
-
Save fforres/cf0786b9507135be84a6cb57a0a19a78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Dog(name) { | |
this.name = name; | |
} | |
Dog.bark = function() { | |
console.log("Guau… from the Dog function") | |
} | |
Dog.prototype.actuallyBark = function() { | |
console.log("Guau!") | |
} | |
var bailey = new Dog("Bailey"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment