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

Is Functional Programming Worth Learning?

There are a lot of jargon words in tech, and it is tough to understand them when you start software engineering or any IT profession. Words such as functional, object-oriented, procedural, and dynamic programming can be overwhelming and intimidating. Is functional programming worth learning? I chose JavaScript to give you this intro because it has … 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 software predictable and … Read more