How to inherit properties and methods using class in JavaScript
Originally posted here!
To inherit properties and methods from one class to another we need to use the extends keyword.
Let's consider 2 classes, a base class User and a class Admin which inherits properties and methods from the User class.
You may ...
melvingeorge-me.hashnode.dev5 min read