This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* S.O.L.I.D STANDS FOR: | |
When expanded the acronyms might seem complicated, but they are pretty simple to grasp. | |
S – Single-responsiblity principle | |
O – Open-closed principle | |
L – Liskov substitution principle | |
I – Interface segregation principle | |
D – Dependency Inversion Principle | |
Let’s look at each principle individually to understand why S.O.L.I.D can help make us better developers. |