According to this article it should be a Javascript 2.0 way to define class. However, I never saw that in practice. Thus the question. How to use class keyword and what is the difference between Javascript 1.x way of doing things?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The reason you never saw the JavaScript 2.0 was merged into ECMAScript 4 which was rather unpopular and so never made it into the real world. So to answer your question, how do you use the |
|||||||||
|
|
You never saw it in practice because virtually nothing supports JavaScript 2.0. That draft is from a specification that died before being anything other than draft. |
||||
|
|
|
If you've a Java or C# background, here's how to define a class in JavaScript
|
|||
|
|
You can still build classes in JS of course using prototype!
|
|||||
|
|
|
What is this then (taken from js.js from Magento JS lib)
|
|||
|
