JavaScript Classes. Pt 2
The extends keyword is used in class declarations and expressions to create a class that acts as a child of another class.
class x extends y {
}
Here, x is the child class and y is the parent class. The extend keyword acts as the link between the tw...
wonuola.hashnode.dev3 min read