DEV Community

Discussion on: Abbreviations in code: yay or nay?

Collapse
 
dan1ve profile image
Daniel Veihelmann

Abbreviated variable names are a super common anti-pattern.
It makes it harder to understand the code, especially for other devs that try to understand the code.

(Obvious exemptions are conventions, e.g. loop variables like "i" or caught exceptions "e")