Object-Oriented Programming With Javascript

In a previous article, I talked about functional programming. Today I want to address object-oriented programming with Javascript, which is still a prevalent paradigm that many companies use. Object-Oriented programming has become a lot easier in Javascript since ES6, with the introduction of classes. Before ES6, we could create objects, but it got messy. If … Read more

Functional Vs Object Oriented Programming

Functional Programming (FP) and Object-Oriented Programming (OOP) are two programming paradigms that are popular in software engineering. Understanding programming paradigms is crucial because they define how we approach problem-solving in software development. Functional Programming, or FP for short, isn’t just about writing code; it’s about crafting functions with no side effects, making code predictable and … Read more