Created
December 10, 2016 19:27
-
-
Save fforres/33fa104d059d8a6c14cd608e0429decd 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; | |
| this.bark = 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