↧
Object-Oriented JavaScript Part 1: The Functional Pattern
JavaScript is an object-oriented language, but instead of being class-based like Java, C++ or C#, it’s prototype-based. This means that common object-oriented features like, for example, inheritance...
View ArticleObject-Oriented JavaScript Part 2: How the prototype works
JavaScript is a prototype-based language. Understanding how the prototype works is essential to understanding how JavaScript works. Using prototypes is not difficult, but it is different from using...
View Article