James John wrote
SOLID Principles of Object-Oriented Design
There’s a bunch of principles in object-oriented programming. One of them and probably the most popular is SOLID. SOLID is an acronym for:Single Responsibility PrincipleOpen/Closed PrincipleLiskov Substitution PrincipleInterface Segregation PrincipleDependency Inversion Principle The SOLID principles were coined by Robert C Martin (Uncle Bob). Single Responsibility Principle This is a principle that attempts to provide a […]
December 24, 2019 in Javascript