September 2024
Beginner to intermediate
985 pages
35h 37m
English
This chapter introduced object orientation in general and object-oriented programming in JavaScript in particular. You should take away the following points from this chapter:
Object-oriented programming is based on the following four principles (among others):
AbstractionAbstract behavior of objects is summarized in classes or prototypes.
Data encapsulationProperties and methods are encapsulated in the form of classes or prototypes and hidden from external access.
InheritanceProperties and methods can be inherited from one class to another class or from one object to another object.
PolymorphismObjects can take on different types depending on their use.
In JavaScript, there are several types of object-oriented ...
Read now
Unlock full access