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