Browsing Tag
oop
9 posts
Unlearning SOLID: My Path to More Nuanced Code Evaluation
Introduction If you are a software engineer, you have probably heard about the SOLID principles. They are a…
Introduction To OOP: Objects
This article was first published on konadu.dev(Introduction To OOP: Objects) Undoubtedly, two of the most known programming paradigms…
OOP via FP : functional nature of classes and objects
Topic for today Today I would like to tell you, why such OOP concepts as classes and objects…
Mastering OOP: Unveiling the Power of Constructors for Efficient Code Creation and Optimization
Understanding Constructors in Object-Oriented Programming: A Comprehensive Guide to Creating Efficient Code. Explore the fundamental concepts of Object-Oriented…
Object-Oriented Design: Why don’t you explain this to me like I’m five
Introduction In the world of creating software, a strong foundation is key. Before even writing a single line…
cloneElement in React? important for interview
Certainly! React.cloneElement is a somewhat nuanced utility in React, so let’s delve deeper into its intricacies and use…
What is the `new` keyword in JavaScript?
The new keyword in JavaScript is used to create new object instances from either: A constructor function: A…
9-JS OOP: Getters And Setters In Javascript Classes
What are Getters and Setters? Getters and setters are methods that are used to get and set the…
Simplified O.O.P : Abstraction in Python
Introduction In previous post , Simplified: Object-oriented Programming Python, I promised to get into details on abstraction. The…