What you need to know about Object Oriented Programming
Java, C++, Python, Ruby, and many other languages thrive on Object oriented programming (OOP) and understanding what that means is vital if you plan on using these languages professionally.
🤔 What is object oriented programming?
This paradigm is bas...
blog.imnick.dev6 min read
Nice article!
I disagree with this statement:
OO is about objects, not classes.
There are ways to implement OO without using classes and JavaScript is a great example.
JavaScript, as described by ECMAscript specification, is an:
However, objects are not created by class instancing.