- You will see how to work with class syntax in javascript
- Everything in javascript is an object
- in javascript we don't have classes but prototypes
- INHERITANCE
- ABSTRACTION
- POLYMORPHISM
- ENCAPSULATION
- CLASS (class)
- INSTANCES (new name(...))
- EXTENDS (extends className {..})
- ENCAPSULATION (_ and methods)
- we have the logic of an online education platform
- where we have classes of teachers, students, comments, courses and classes of the courses
- we have instances of all classes
- all classes have attributes and some have methods
- some of the classes implement encapsulation, hiding themselves so people can't access their "private" properties
- we apply polymorphism in some instances of classes to modify the use of some methods
Follow me on Instagram Follow me on Facebook Follow me on Youtube