#inheritance
Read more stories on Hashnode
Articles with this tag
//Inheritance from ourselves class Thinker { constructor(name, thought) { this.name = name this.thought = thought } ...