Posts for SOLID

Learn SOLID Principles of Object-Oriented Design – Course

What you will learn In this series, we are going to understand what is known as SOLID principles of object-oriented design.  By the end of this series, you will be able to understand what the SOLID principles are. Why they are important.  How they will help you write good and maintainable code. Understanding the SOLID […]

December 24, 2019 in Courses

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