Creating JavaScript Classes, Part 1: Constructors (with screencast)
filed in Development on Feb.09, 2009
View Screencast | Download code
JavaScript does not support classes. At least, not in the traditional sense. It does support basic class features, such as inheritance and method overrides. However, it does all of this though functions and function prototypes, making the implementation of class features is a bit more complicated.
JavaScript works well [...]