Inheritance in JS Simplified using objects
In this article we would see how we can implement inheritance through objects
Lets create a parent prototype object :
const staffProto = {
init(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
},
empDetails()...
breakthecode.hashnode.dev1 min read