Clean Code - Part-1: Naming
Assigning Names to Variables, Functions, Classes & More
Names should be meaningful
const us = new MainEntity();
us.process();
if (login) {
// Some code related to login
}
Consider the above example:-
Lack of clarity on the overall purpose or f...
blog.saurabhmahajan.com9 min read