Created
July 3, 2014 14:25
-
-
Save miller3818/7cf89ad0690d7a7cc47e 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
</body> | |
</html> |
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
var speak = function(saywhat) { | |
console.log(saywhat); | |
}; | |
var Dog = function() { | |
var name,breed; | |
}; | |
Dog.prototype.speak = speak; | |
firstDog = new Dog; | |
firstDog.name = "Oscar"; | |
firstDog.breed = "Golden"; | |
firstDog.speak('woof'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment