(no title)
mikegerwitz | 8 years ago
https://www.gnu.org/software/easejs/manual/easejs.html#Imple...
I also wrote a paper on some of the concepts:
https://mikegerwitz.com/papers/coope/coope.pdf
The `class' keyword in JS still leaves much to be desired; it's just syntatic sugar around the prototype model. There's nothing wrong with that model---it's just important to understand how it differs from what OOP developers traditionally expect.
nostalgeek|8 years ago
No it allows "super" late binding, something you cannot do with functions and prototypes. It's not just "sugar".