React favours composition over inheritance
In this lesson, we study why React programmers prefer to use class composition over class inheritance.
Why not inheritance?
Imagine you are making a video game and need two characters: one that can shoot lasers and another that can cast spells. Both characters have a name and health.
You solve this problem neatly with inheritance. As per the following, a class structure with one parent class, the character, and two child classes called caster and shooter can be created.
Suppose you launched your game and it was a big hit. But now, your game’s buyers demand another character that can both shoot lasers and cast spells.
There are two things you can do:
- Make the
shoot()andcast()functions a part of the parentCharacterclass and have theShooterFighterclass inherit it. The only problem with this is