10/23/2022
However, there are exceptions to the rule of naming variables.When creating generic library code, such as a collection manipulation library, you will encounter variable names that have no meaning. Because your library doesn't care if the collection contains customer objects or any pets, your implementations will have to refer to things like collection and item.
Finally, regardless of how short or long, your code is. Variable names might be the difference between reading and implementing (changes to) your code in 10 minutes vs endless hours of headache.
Yours, KosDevLab