Skip to content

Commit 20419a8

Browse files
author
Bora Lee
committed
Merge remote-tracking branch 'source/master'
2 parents be1233b + 38e1bb5 commit 20419a8

File tree

76 files changed

+605
-478
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+605
-478
lines changed
1 Byte
Binary file not shown.
18.1 KB
Binary file not shown.
17 Bytes
Binary file not shown.

.gradle/4.10.2/gc.properties

Whitespace-only changes.

.gradle/vcs-1/gc.properties

Whitespace-only changes.

1-js/02-first-steps/04-variables/2-declare-variables/task.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ importance: 3
44

55
# Giving the right name
66

7-
1. Create the variable with the name of our planet. How would you name such a variable?
8-
2. Create the variable to store the name of the current visitor. How would you name that variable?
7+
1. Create a variable with the name of our planet. How would you name such a variable?
8+
2. Create a variable to store the name of a current visitor to a website. How would you name that variable?

1-js/02-first-steps/04-variables/article.md

+41-42
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 여러가지 변수
22

3-
Most of the time, a JavaScript application needs to work with information. Here are 2 examples:
4-
1. An online-shop -- the information might include goods being sold and a shopping cart.
3+
Most of the time, a JavaScript application needs to work with information. Here are two examples:
4+
1. An online shop -- the information might include goods being sold and a shopping cart.
55
2. A chat application -- the information might include users, messages, and much more.
66

77
변수는 이러한 정보를 저장하기 위해 사용됩니다.
@@ -39,7 +39,7 @@ alert(message); // shows the variable content
3939
*/!*
4040
```
4141

42-
To be concise we can merge the variable declaration and assignment into a single line:
42+
To be concise, we can combine the variable declaration and assignment into a single line:
4343

4444
```js run
4545
let message = 'Hello!'; // define the variable and assign the value
@@ -82,15 +82,15 @@ let user = 'John'
8282

8383

8484
````smart header="`var` instead of `let`"
85-
In older scripts you may also find another keyword: `var` instead of `let`:
85+
In older scripts, you may also find another keyword: `var` instead of `let`:
8686

8787
```js
8888
*!*var*/!* message = 'Hello';
8989
```
9090

91-
The `var` keyword is *almost* the same as `let`. It also declares a variable, but in a slightly different, "old-school" fashion.
91+
The `var` keyword is *almost* the same as `let`. It also declares a variable, but in a slightly different, "old-school" way.
9292

93-
There are subtle differences between `let` and `var`, but they do not matter for us yet. We'll cover them in detail later, in the chapter <info:var>.
93+
There are subtle differences between `let` and `var`, but they do not matter for us yet. We'll cover them in detail in the chapter <info:var>.
9494
````
9595
9696
## A real-life analogy
@@ -101,10 +101,9 @@ For instance, the variable `message` can be imagined as a box labeled `"message"
101101
102102
![](variable.png)
103103
104-
We can put any value into the box.
105-
106-
Also we can change it. The value can be changed as many times as needed:
104+
We can put any value in the box.
107105
106+
We can also change it as many times as we want:
108107
```js run
109108
let message;
110109
@@ -137,28 +136,28 @@ alert(message); // Hello world!
137136
```
138137
139138
```smart header="Functional languages"
140-
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.
141140
142141
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.
143142
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.
145144
```
146145
147146
## Variable naming [#variable-naming]
148147
149-
There are two limitations for a variable name in JavaScript:
148+
There are two limitations on variable names in JavaScript:
150149
151-
1. The name must contain only letters, digits, symbols `$` and `_`.
150+
1. The name must contain only letters, digits, or the symbols `$` and `_`.
152151
2. The first character must not be a digit.
153152
154-
Valid names, for instance:
153+
Examples of valid names:
155154
156155
```js
157156
let userName;
158157
let test123;
159158
```
160159
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`.
162161
163162
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.
164163
@@ -176,11 +175,11 @@ Examples of incorrect variable names:
176175
```js no-beautify
177176
let 1a; // cannot start with a digit
178177
179-
let my-name; // a hyphen '-' is not allowed in the name
178+
let my-name; // hyphens '-' aren't allowed in the name
180179
```
181180
182181
```smart header="Case matters"
183-
Variables named `apple` and `AppLE` -- are two different variables.
182+
Variables named `apple` and `AppLE` are two different variables.
184183
```
185184
186185
````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
195194
````
196195

197196
````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.
199198
200-
For example, words `let`, `class`, `return`, `function` are reserved.
199+
For example: `let`, `class`, `return`, and `function` are reserved.
201200
202201
The code below gives a syntax error:
203202
@@ -209,17 +208,17 @@ let return = 5; // also can't name it "return", error!
209208

210209
````warn header="An assignment without `use strict`"
211210

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.
213212

214213
```js run no-strict
215214
// note: no "use strict" in this example
216215

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
218217

219218
alert(num); // 5
220219
```
221220

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:
223222

224223
```js
225224
"use strict";
@@ -232,21 +231,21 @@ num = 5; // error: num is not defined
232231
233232
## Constants
234233
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`:
236235
237236
```js
238237
const myBirthday = '18.04.1982';
239238
```
240239
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:
242241
243242
```js run
244243
const myBirthday = '18.04.1982';
245244
246245
myBirthday = '01.01.2001'; // error, can't reassign the constant!
247246
```
248247
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.
250249
251250
252251
### Uppercase constants
@@ -271,61 +270,61 @@ alert(color); // #FF7F00
271270
Benefits:
272271
273272
- `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`.
275274
- When reading the code, `COLOR_ORANGE` is much more meaningful than `#FF7F00`.
276275
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.
278277
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.
280279
281280
For instance:
282281
```js
283282
const pageLoadTime = /* time taken by a webpage to load */;
284283
```
285284
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.
287286
288287
In other words, capital-named constants are only used as aliases for "hard-coded" values.
289288
290289
## Name things right
291290
292291
Talking about variables, there's one more extremely important thing.
293292
294-
Please name the variables sensibly. Take time to think if needed.
293+
Please name your variables sensibly. Take time to think about this.
295294
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.
297296
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.
299298
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.
301300
302301
Some good-to-follow rules are:
303302
304303
- Use human-readable names like `userName` or `shoppingCart`.
305304
- 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`.
308307
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 descriptive and concise variable names in practice is not. Go for it.
310309
311310
```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.
313312
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.
315314
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.
317316
318317
An extra variable is good, not evil.
319318
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.
321320
```
322321
323322
## Summary
324323
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.
326325
327326
- `let` -- is a modern variable declaration. The code must be in strict mode to use `let` in Chrome (V8).
328327
- `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.
329328
- `const` -- is like `let`, but the value of the variable can't be changed.
330329
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

Comments
 (0)