Let's Learn JavaScript - Naming things

Previously on “Let’s Learn JavaScript”:

Now it’s time to see how we name things in JavaScript.

Names

All the things you create in a JavaScript program have names. We have seen bindings, but there are also classes, functions, methods, members, etc. All have names.

In JavaScript, a name must start with a letter, optionally followed by one or more letters, digits, or underscore. $ (dollar sign) and _ (underscore) can be used instead of a letter as a name prefix.

let name = "Jon Snow";

// binding that starts with a letter followed by a digit
const castle1 = "Winterfell";

// binding that starts with _ followed by a digit
const _1stOne = "firstOne";

// binding that starts with $ followed by a digit
const $2nd = "second";

So the only constraint is that a name can’t start with a digit, you will get an error if you try to do this:

// This doesn't work
const 1st = "first";
const 2nd = "second";

By convention, the name of all members, bindings, functions starts in lower case. Class names start with upper case.

camelCaseNotation is used for names composed from several words of all other names:

const nameOfTheGame = "football";
const isDone = false;
const numberOfBottles = 3;

JavaScript is case sensitive, this means name, Name and NAME are three different things:

const name = "Jon";
const Name = "Snow";
const NAME = "JON";

A special case is program level constants are entirely upper case and we separate words with underscores:

const DATABASE_IP = "192.34.55.11";
const LEVEL_WARNING = "LEVEL_WARNING";

It might be hard to see the difference between a const binding and a program level constant. const binding is a language feature, a program level constant is a convention, and also it’s perfectly fine to create a JavaScript program without any program level constants. Program level constants are things that are not changing in a program and are available in multiple parts of a program.

For example, if you make a Chess program, the number of squares on the board is 64 so you can use a program level constant, BOARD_SQUARES for that. All Sudoku boards have 81 squares, so that’s a program-level constant.

Keywords

There are some words with special meanings in JavaScript. Like const or let. These words are reserved and we can’t use them to name our abstractions.

// This doesn't work
const const = "const";
let let = "let";

Some of the keywords are not used by the language but might be in future versions. New keywords may be added by newer versions of JavaScript.

Here is the list of reserved words that you cannot use to name your stuff:

abstractargumentsawaitboolean
breakbytecasecatch
charclassconstcontinue
debuggerdefaultdeletedo
doubleelseenumeval
exportextendsfalsefinal
finallyfloatforfunction
gotoifimplementsimport
ininstanceofintinterface
letlongnativenew
nullpackageprivateprotected
publicreturnshortstatic
superswitchsynchronizedthis
throwthrowstransienttrue
trytypeofvarvoid
volatilewhilewithyield

Naming things

In 10 Reasons Why You Are Not a Great Programmer and What Makes Good Code Good, I’ve talked at length about what it means to write good code.

Good programmers understand that they spend most of the time reading code, not writing new code. We write a piece of code once, but we read it many times: to fix bugs, to refactor it, to extend it, to reuse it, to use it as a base for new code.

Imagine that you come back to it after several weeks or months. If the code is not clear you will have a hard time understanding how the code is working. If you work in a team, that piece of code you wrote a while back will be read by several people, maybe somebody else will have to use your code and they’ll have to understand it. Will they be able to understand it? Will you be able to understand it after a while?

One of the things that make the code clear or not is the naming of the abstractions from that code. Everything, from the name of a binding to the name of a function or a class counts.

Naming things is hard but important. Please spend time to find eloquent names for things. Future you will thank you.

In practice this is hard to do, is fast and a no-brainer to use a bad name. Think a bit about it. Ask yourself if is the right one.

Summary

Time is up. Looks like we didn’t get to data types, so let’s do that next time.

Want to learn more?