Can Javascript classes/objects have constructors and how are they created? Any examples?
feedback
|
|
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.
| |||
|
feedback
|
|
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
| |||||||||
feedback
|
|
Here are a couple of excellent explanations: | |||
|
feedback
|
The point of the constructor property is to provide some way of pretending JavaScript has classes. One of the things you cannot usefully do is change an object's constructor after it's been created. It's complicated. I wrote a fairly comprehensive piece on it a few years ago: http://joost.zeekat.nl/constructors-considered-mildly-confusing.html | |||
|
feedback
|