You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It may be interesting to know that there also exist [functional](https://en.wikipedia.org/wiki/Functional_programming) programming languages that forbid changing a variable value. For example, [Scala](http://www.scala-lang.org/) or [Erlang](http://www.erlang.org/).
139
+
It's interesting to note that [functional](https://en.wikipedia.org/wiki/Functional_programming) programming languages, like [Scala](http://www.scala-lang.org/) or [Erlang](http://www.erlang.org/), forbid changing variable values.
141
140
142
141
In such languages, once the value is stored "in the box", it's there forever. If we need to store something else, the language forces us to create a new box (declare a new variable). We can't reuse the old one.
143
142
144
-
Though it may seem a little bit odd at first sight, these languages are quite capable of serious development. More than that, there are areas like parallel computations where this limitation confers certain benefits. Studying such a language (even if not planning to use it soon) is recommended to broaden the mind.
143
+
Though it may seem a little odd at first sight, these languages are quite capable of serious development. More than that, there are areas like parallel computations where this limitation confers certain benefits. Studying such a language (even if you're not planning to use it soon) is recommended to broaden the mind.
145
144
```
146
145
147
146
## Variable naming [#variable-naming]
148
147
149
-
There are two limitations for a variable name in JavaScript:
148
+
There are two limitations on variable names in JavaScript:
150
149
151
-
1. The name must contain only letters, digits, symbols `$` and `_`.
150
+
1. The name must contain only letters, digits, or the symbols `$` and `_`.
152
151
2. The first character must not be a digit.
153
152
154
-
Valid names, for instance:
153
+
Examples of valid names:
155
154
156
155
```js
157
156
let userName;
158
157
let test123;
159
158
```
160
159
161
-
When the name contains multiple words, [camelCase](https://en.wikipedia.org/wiki/CamelCase) is commonly used. That is: words go one after another, each word starts with a capital letter: `myVeryLongName`.
160
+
When the name contains multiple words, [camelCase](https://en.wikipedia.org/wiki/CamelCase) is commonly used. That is: words go one after another, each word starting with a capital letter: `myVeryLongName`.
162
161
163
162
What's interesting -- the dollar sign `'$'` and the underscore `'_'` can also be used in names. They are regular symbols, just like letters, without any special meaning.
164
163
@@ -176,11 +175,11 @@ Examples of incorrect variable names:
176
175
```js no-beautify
177
176
let 1a; // cannot start with a digit
178
177
179
-
let my-name; // a hyphen '-' is not allowed in the name
178
+
let my-name; // hyphens '-' aren't allowed in the name
180
179
```
181
180
182
181
```smart header="Case matters"
183
-
Variables named `apple` and `AppLE` -- are two different variables.
182
+
Variables named `apple` and `AppLE` are two different variables.
184
183
```
185
184
186
185
````smart header="Non-English letters are allowed, but not recommended"
@@ -195,9 +194,9 @@ Technically, there is no error here, such names are allowed, but there is an int
195
194
````
196
195
197
196
````warn header="Reserved names"
198
-
There is a [list of reserved words](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Keywords), which cannot be used as variable names, because they are used by the language itself.
197
+
There is a [list of reserved words](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Keywords), which cannot be used as variable names because they are used by the language itself.
199
198
200
-
For example, words `let`, `class`, `return`, `function` are reserved.
199
+
For example: `let`, `class`, `return`, and `function` are reserved.
201
200
202
201
The code below gives a syntax error:
203
202
@@ -209,17 +208,17 @@ let return = 5; // also can't name it "return", error!
209
208
210
209
````warn header="An assignment without `use strict`"
211
210
212
-
Normally, we need to define a variable before using it. But in the old times, it was technically possible to create a variable by a mere assignment of the value, without `let`. This still works now if we don't put `use strict`. The behavior is kept for compatibility with old scripts.
211
+
Normally, we need to define a variable before using it. But in the old times, it was technically possible to create a variable by a mere assignment of the value without using `let`. This still works now if we don't put `use strict` in our scripts to maintain compatibility with old scripts.
213
212
214
213
```js run no-strict
215
214
// note: no "use strict" in this example
216
215
217
-
num =5; // the variable "num" is created if didn't exist
216
+
num =5; // the variable "num" is created if it didn't exist
218
217
219
218
alert(num); // 5
220
219
```
221
220
222
-
That's a bad practice, it would give an error in the strict mode:
221
+
This is a bad practice and would cause an error in strict mode:
223
222
224
223
```js
225
224
"use strict";
@@ -232,21 +231,21 @@ num = 5; // error: num is not defined
232
231
233
232
## Constants
234
233
235
-
To declare a constant (unchanging) variable, one can use `const` instead of `let`:
234
+
To declare a constant (unchanging) variable, use `const` instead of `let`:
236
235
237
236
```js
238
237
const myBirthday = '18.04.1982';
239
238
```
240
239
241
-
Variables declared using `const` are called "constants". They cannot be changed. An attempt to do it would cause an error:
240
+
Variables declared using `const` are called "constants". They cannot be changed. An attempt to do so would cause an error:
242
241
243
242
```js run
244
243
const myBirthday = '18.04.1982';
245
244
246
245
myBirthday = '01.01.2001'; // error, can't reassign the constant!
247
246
```
248
247
249
-
When a programmer is sure that the variable should never change, they can use `const` to guarantee it, and also to clearly show that fact to everyone.
248
+
When a programmer is sure that a variable will never change, they can declare it with `const` to guarantee and clearly communicate that fact to everyone.
250
249
251
250
252
251
### Uppercase constants
@@ -271,61 +270,61 @@ alert(color); // #FF7F00
271
270
Benefits:
272
271
273
272
- `COLOR_ORANGE` is much easier to remember than `"#FF7F00"`.
274
-
- It is much easier to mistype in `"#FF7F00"` than in `COLOR_ORANGE`.
273
+
- It is much easier to mistype `"#FF7F00"` than `COLOR_ORANGE`.
275
274
- When reading the code, `COLOR_ORANGE` is much more meaningful than `#FF7F00`.
276
275
277
-
When should we use capitals for a constant, and when should we name them normally? Let's make that clear.
276
+
When should we use capitals for a constant and when should we name it normally? Let's make that clear.
278
277
279
-
Being a "constant" just means that the value never changes. But there are constants that are known prior to execution (like a hexadecimal value for red), and there are those that are *calculated* in run-time, during the execution, but do not change after the assignment.
278
+
Being a "constant" just means that a variable's value never changes. But there are constants that are known prior to execution (like a hexadecimal value for red) and there are constants that are *calculated* in run-time, during the execution, but do not change after their initial assignment.
280
279
281
280
For instance:
282
281
```js
283
282
const pageLoadTime = /* time taken by a webpage to load */;
284
283
```
285
284
286
-
The value of `pageLoadTime` is not known prior to the page load, so it's named normally. But it's still a constant, because it doesn't change after assignment.
285
+
The value of `pageLoadTime` is not known prior to the page load, so it's named normally. But it's still a constant because it doesn't change after assignment.
287
286
288
287
In other words, capital-named constants are only used as aliases for "hard-coded" values.
289
288
290
289
## Name things right
291
290
292
291
Talking about variables, there's one more extremely important thing.
293
292
294
-
Please name the variables sensibly. Take time to think if needed.
293
+
Please name your variables sensibly. Take time to think about this.
295
294
296
-
Variable naming is one of the most important and complex skills in programming. A quick glance at variable names can reveal which code is written by a beginner and which by an experienced developer.
295
+
Variable naming is one of the most important and complex skills in programming. A quick glance at variable names can reveal which code was written by a beginner versus an experienced developer.
297
296
298
-
In a real project, most of the time is spent on modifying and extending the existing code base, rather than writing something completely separate from scratch. And when we return to the code after some time of doing something else, it's much easier to find information that is well-labeled. Or, in other words, when the variables have good names.
297
+
In a real project, most of the time is spent modifying and extending an existing code base rather than writing something completely separate from scratch. When we return to some code after doing something else for a while, it's much easier to find information that is well-labeled. Or, in other words, when the variables have good names.
299
298
300
-
Please spend some time thinking about the right name for a variable before declaring it. This will repay you a lot.
299
+
Please spend time thinking about the right name for a variable before declaring it. Doing so will repay you handsomely.
301
300
302
301
Some good-to-follow rules are:
303
302
304
303
- Use human-readable names like `userName` or `shoppingCart`.
305
304
- Stay away from abbreviations or short names like `a`, `b`, `c`, unless you really know what you're doing.
306
-
- Make the name maximally descriptive and concise. Examples of bad names are `data` and `value`. Such a name says nothing. It is only ok to use them if it's exceptionally obvious from the context which data or value is meant.
307
-
- Agree on terms within your team and in your own mind. If a site visitor is called a "user" then we should name related variables like `currentUser` or `newUser`, but not `currentVisitor` or a `newManInTown`.
305
+
- Make names maximally descriptive and concise. Examples of bad names are `data` and `value`. Such names say nothing. It's only okay to use them if the context of the code makes it exceptionally obvious which data or value the variable is referencing.
306
+
- Agree on terms within your team and in your own mind. If a site visitor is called a "user" then we should name related variables `currentUser` or `newUser` instead of `currentVisitor` or `newManInTown`.
308
307
309
-
Sounds simple? Indeed it is, but creating good descriptive-and-concise names in practice is not. Go for it.
308
+
Sounds simple? Indeed it is, but creating descriptiveandconcise variable names in practice is not. Go for it.
310
309
311
310
```smart header="Reuse or create?"
312
-
And the last note. There are some lazy programmers who, instead of declaring a new variable, tend to reuse the existing ones.
311
+
And the last note. There are some lazy programmers who, instead of declaring new variables, tend to reuse existing ones.
313
312
314
-
As a result, the variable is like a box where people throw different things without changing the sticker. What is inside it now? Who knows... We need to come closer and check.
313
+
As a result, their variables are like boxes into which people throw different things without changing their stickers. What's inside the box now? Who knows? We need to come closer and check.
315
314
316
-
Such a programmer saves a little bit on variable declaration, but loses ten times more on debugging the code.
315
+
Such programmers save a little bit on variable declaration but lose ten times more on debugging.
317
316
318
317
An extra variable is good, not evil.
319
318
320
-
Modern JavaScript minifiers and browsers optimize code well enough, so it won't create performance issues. Using different variables for different values can even help the engine to optimize.
319
+
Modern JavaScript minifiers and browsers optimize code well enough, so it won't create performance issues. Using different variables for different values can even help the engine optimize your code.
321
320
```
322
321
323
322
## Summary
324
323
325
-
We can declare variables to store data. That can be done using `var` or `let` or `const`.
324
+
We can declare variables to store data by using the `var`, `let`, or `const` keywords.
326
325
327
326
- `let` -- is a modern variable declaration. The code must be in strict mode to use `let` in Chrome (V8).
328
327
- `var` -- is an old-school variable declaration. Normally we don't use it at all, but we'll cover subtle differences from `let` in the chapter <info:var>, just in case you need them.
329
328
- `const` -- is like `let`, but the value of the variable can't be changed.
330
329
331
-
Variables should be named in a way that allows us to easily understand what's inside.
330
+
Variables should be named in a way that allows us to easily understand what's inside them.
0 commit comments