If you care about the code itself and how it’s written, instead only worrying does it work or not, you can say that you practice and care about the clean code.
A professional developer will write the code for the future self and for the “other guy” not just for the machine
Based on that, the clean code can be defined as the code written in such a manner that is self-explanatory, easy to understand by humans and easy to change or extend.
Even bad code can function, but if the code isn’t clean, it can bring a development organization to its knees.
In this article, the focus will be on JavaScript, but the principles can be applied to other programming languages.
#javascript #programming