JavaScript Best Practices — Variable Naming

John Au-Yeung
The Startup
Published in
4 min readMay 10, 2020

--

Photo by Jon Tyson on Unsplash

JavaScript is a very forgiving language. It’s easy to write code that runs but has issues in it.

In this article, we’ll look at best practices for naming JavaScript variables.

Computed-Value Qualifiers in Variable Names

We should name variables that hold computed data with a modifier that the end of the name.

--

--