Created
September 15, 2011 23:35
-
-
Save bonza-labs/1220803 to your computer and use it in GitHub Desktop.
OO javascript
This file contains 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 Car = function(make, color){ | |
this.make = make; | |
this.color = color; | |
this.log = function(){ | |
console.log('I am a '+ this.color +' '+ this.make); | |
}; | |
} | |
// Example call for OO version: | |
(new Car('Ferrari', 'red')).log(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment