Can Javascript classes/objects have constructors and how are they created? Any examples?
|
|
|
|
|
|
|
Click Upvote, your code sample is wrong. You're alerting an object, not the colour. Also the getColor function is defined locally to the constructor, not to the class.
|
||
|
|
|
Here are a couple of excellent explanations: |
||||||
|
|
|
If you have an hour or so this is an excellent lecture the covers this topic. |
|||
|
|
|
|
Here's a template I sometimes use for OOP-similar behavior in JavaScript. As you can see, you can simulate private (both static and instance) members using closures. What
|
||
|
