|
1 |
| -# Code structure |
| 1 | +# 程式碼結構 |
2 | 2 |
|
3 |
| -The first thing we'll study is the building blocks of code. |
| 3 | +我們該知道的第一件事是建立程式區塊 |
4 | 4 |
|
5 |
| -## Statements |
| 5 | +## 語句 (Statements) |
6 | 6 |
|
7 |
| -Statements are syntax constructs and commands that perform actions. |
| 7 | +語句是執行操作的語法結構與命令。 |
8 | 8 |
|
9 |
| -We've already seen a statement, `alert('Hello, world!')`, which shows the message "Hello, world!". |
| 9 | +我們已經看過 `alert(Hello, world!)` 這個用來顯示 "Hello, world!" 訊息的語句。 |
10 | 10 |
|
11 |
| -We can have as many statements in our code as we want. Statements can be separated with a semicolon. |
| 11 | +我們可以在程式中撰寫任何數量的語句,用分號加以區隔。 |
12 | 12 |
|
13 |
| -For example, here we split "Hello World" into two alerts: |
| 13 | +例如,在這裡我們把 "Hello World" 分為兩段: |
14 | 14 |
|
15 | 15 | ```js run no-beautify
|
16 | 16 | alert('Hello'); alert('World');
|
17 | 17 | ```
|
18 | 18 |
|
19 |
| -Usually, statements are written on separate lines to make the code more readable: |
| 19 | +語句通常寫在不同行內使程式更為易讀: |
20 | 20 |
|
21 | 21 | ```js run no-beautify
|
22 | 22 | alert('Hello');
|
23 | 23 | alert('World');
|
24 | 24 | ```
|
25 | 25 |
|
26 |
| -## Semicolons [#semicolon] |
| 26 | +## 分號 (Semicolons) [#semicolon] |
27 | 27 |
|
28 |
| -A semicolon may be omitted in most cases when a line break exists. |
| 28 | +大多情況下當斷行存在時分號可省略。 |
29 | 29 |
|
30 |
| -This would also work: |
| 30 | +所以這樣也行: |
31 | 31 |
|
32 | 32 | ```js run no-beautify
|
33 | 33 | alert('Hello')
|
34 | 34 | alert('World')
|
35 | 35 | ```
|
36 | 36 |
|
37 |
| -Here, JavaScript interprets the line break as an "implicit" semicolon. This is called an [automatic semicolon insertion](https://tc39.github.io/ecma262/#sec-automatic-semicolon-insertion). |
| 37 | +在這裡 JavaScript 直譯 (interprets) 斷行為 "隱性" 分號。這也被稱為 [自動分號插入 (automatic semicolon insertion)](https://tc39.github.io/ecma262/#sec-automatic-semicolon-insertion)。 |
38 | 38 |
|
39 |
| -**In most cases, a newline implies a semicolon. But "in most cases" does not mean "always"!** |
| 39 | +**大多數情況,一個換行代表著一個分號,但 "大多數情況" 不代表 "總是如此"!** |
40 | 40 |
|
41 |
| -There are cases when a newline does not mean a semicolon. For example: |
| 41 | +某些情況下有換行並不代表有分號,如: |
42 | 42 |
|
43 | 43 | ```js run no-beautify
|
44 | 44 | alert(3 +
|
45 | 45 | 1
|
46 | 46 | + 2);
|
47 | 47 | ```
|
48 | 48 |
|
49 |
| -The code outputs `6` because JavaScript does not insert semicolons here. It is intuitively obvious that if the line ends with a plus `"+"`, then it is an "incomplete expression", so the semicolon is not required. And in this case that works as intended. |
| 49 | +此程式輸出 `6`,因為 JavaScript 沒有在內插入分號。直觀上,當某行程式以 `"+"` 結束時,它是個 "不完整的表達式 (incomplete expression)" 而不需要分號,如此一來這個例子才會以我們所想像的方式運作。 |
50 | 50 |
|
51 |
| -**But there are situations where JavaScript "fails" to assume a semicolon where it is really needed.** |
| 51 | +**但有些情況下 JavaScript 對於分號是否真的被需要會假設 "失敗"** |
52 | 52 |
|
53 |
| -Errors which occur in such cases are quite hard to find and fix. |
| 53 | +這些情況下的錯誤很難被找到且修正。 |
54 | 54 |
|
55 |
| -````smart header="An example of an error" |
56 |
| -If you're curious to see a concrete example of such an error, check this code out: |
| 55 | +````smart header="錯誤的例子" |
| 56 | +如果你想看個這種錯誤的例子,來看這段程式: |
57 | 57 |
|
58 | 58 | ```js run
|
59 | 59 | [1, 2].forEach(alert)
|
60 | 60 | ```
|
61 | 61 |
|
62 |
| -No need to think about the meaning of the brackets `[]` and `forEach` yet. We'll study them later. For now, just remember the result of the code: it shows `1` then `2`. |
| 62 | +先不用思考方括號 `[]` 跟 `forEach` 的意義,我們晚點會介紹。現在只要記得這份程式的執行結果:先顯示 `1` 接著是 `2`。 |
63 | 63 |
|
64 |
| -Now, let's add an `alert` before the code and *not* finish it with a semicolon: |
| 64 | +現在來加入一個 `alert` 在這段程式前且 `不要` 以分號做結。 |
65 | 65 |
|
66 | 66 | ```js run no-beautify
|
67 | 67 | alert("There will be an error")
|
68 | 68 |
|
69 | 69 | [1, 2].forEach(alert)
|
70 | 70 | ```
|
71 | 71 |
|
72 |
| -Now if we run the code, only the first `alert` is shown and then we have an error! |
| 72 | +若我們執行這段程式,只有第一個 `alert` 會被顯示出來並有錯誤產生! |
73 | 73 |
|
74 |
| -But everything is fine again if we add a semicolon after `alert`: |
| 74 | +但若我們在 `alert` 之後加入分號,一切又恢復正常: |
75 | 75 | ```js run
|
76 | 76 | alert("All fine now");
|
77 | 77 |
|
78 | 78 | [1, 2].forEach(alert)
|
79 | 79 | ```
|
80 | 80 |
|
81 |
| -Now we have the "All fine now" message followed by `1` and `2`. |
| 81 | +現在我們有 "All fine now" 的訊息並伴隨著 `1` 和 `2` 顯示。 |
82 | 82 |
|
| 83 | +在沒有分號時會有錯誤,是因為 JavaScript 不假設方括號 `[...]` 之前要有分號。 |
83 | 84 |
|
84 |
| -The error in the no-semicolon variant occurs because JavaScript does not assume a semicolon before square brackets `[...]`. |
85 |
| -
|
86 |
| -So, because the semicolon is not auto-inserted, the code in the first example is treated as a single statement. Here's how the engine sees it: |
| 85 | +因為分號沒有被自動插入,所以第一個例子內的程式被視為單獨一行語句。這是引擎是怎麼看它的樣子: |
87 | 86 |
|
88 | 87 | ```js run no-beautify
|
89 | 88 | alert("There will be an error")[1, 2].forEach(alert)
|
90 | 89 | ```
|
91 | 90 |
|
92 |
| -But it should be two separate statements, not one. Such a merging in this case is just wrong, hence the error. This can happen in other situations. |
| 91 | +但程式應該要有兩段分開的語句而非單獨一個,本例中的合併是錯誤的故導致錯誤,這在很多其他情況下也可能發生。 |
93 | 92 | ````
|
94 | 93 |
|
95 |
| -We recommend putting semicolons between statements even if they are separated by newlines. This rule is widely adopted by the community. Let's note once again -- *it is possible* to leave out semicolons most of the time. But it's safer -- especially for a beginner -- to use them. |
| 94 | +我們建議即使是依據換行分開的語句也要標上分號,這個規則被社群廣為採納。再次強調 - 大多時間 *可能* 可以省略分號,但加上分號會更安全,尤其對新手而言。 |
96 | 95 |
|
97 |
| -## Comments |
| 96 | +## 註解 |
98 | 97 |
|
99 |
| -As time goes on, programs become more and more complex. It becomes necessary to add *comments* which describe what the code does and why. |
| 98 | +程式會隨著時間變得越來越複雜,有其必要加入 *註解* 來解釋程式在做什麼且為什麼這麼做。 |
100 | 99 |
|
101 |
| -Comments can be put into any place of a script. They don't affect its execution because the engine simply ignores them. |
| 100 | +註解可以加在腳本內任意位置,這不影響腳本運行因為引擎會直接忽略它們。 |
102 | 101 |
|
103 |
| -**One-line comments start with two forward slash characters `//`.** |
| 102 | +**單行註解由兩個正斜線字元 (forward slash characters) 開始 `//`。** |
104 | 103 |
|
105 |
| -The rest of the line is a comment. It may occupy a full line of its own or follow a statement. |
| 104 | +此行剩餘部分就是註解,它可以佔據整行或是寫在某個語句之後。 |
106 | 105 |
|
107 |
| -Like here: |
| 106 | +像這樣: |
108 | 107 | ```js run
|
109 |
| -// This comment occupies a line of its own |
| 108 | +// 此註解佔據自身整行 |
110 | 109 | alert('Hello');
|
111 | 110 |
|
112 |
| -alert('World'); // This comment follows the statement |
| 111 | +alert('World'); // 此註解寫在一個語句之後 |
113 | 112 | ```
|
114 | 113 |
|
115 |
| -**Multiline comments start with a forward slash and an asterisk <code>/*</code> and end with an asterisk and a forward slash <code>*/</code>.** |
| 114 | +**多行註解由一個正斜線字元加上一個星號開始 <code>/*</code> 並以一個星號加上正斜線字元作結 <code>*/</code>。** |
116 | 115 |
|
117 |
| -Like this: |
| 116 | +像這樣: |
118 | 117 |
|
119 | 118 | ```js run
|
120 |
| -/* An example with two messages. |
121 |
| -This is a multiline comment. |
| 119 | +/* 顯示兩個訊息的例子。 |
| 120 | +這是一個多行註解。 |
122 | 121 | */
|
123 | 122 | alert('Hello');
|
124 | 123 | alert('World');
|
125 | 124 | ```
|
126 | 125 |
|
127 |
| -The content of comments is ignored, so if we put code inside <code>/* ... */</code>, it won't execute. |
| 126 | +因為註解中的內容會被忽略,所以我們若放程式在 <code>/* ... */</code> 之內將不會被執行。 |
128 | 127 |
|
129 |
| -Sometimes it can be handy to temporarily disable a part of code: |
| 128 | +偶爾需要暫時把一段程式拿掉時很有用: |
130 | 129 |
|
131 | 130 | ```js run
|
132 |
| -/* Commenting out the code |
| 131 | +/* 註解掉程式 |
133 | 132 | alert('Hello');
|
134 | 133 | */
|
135 | 134 | alert('World');
|
136 | 135 | ```
|
137 | 136 |
|
138 |
| -```smart header="Use hotkeys!" |
139 |
| -In most editors, a line of code can be commented out by pressing the `key:Ctrl+/` hotkey for a single-line comment and something like `key:Ctrl+Shift+/` -- for multiline comments (select a piece of code and press the hotkey). For Mac, try `key:Cmd` instead of `key:Ctrl`. |
| 137 | +```smart header="用熱鍵!" |
| 138 | +大多數編輯器中,可以按下 `key:Ctrl+/` 這個熱鍵來註解掉單行程式,而 `key:Ctrl+Shift+/` 可以註解多行 (選取一段程式碼後按下熱鍵)。Mac 則使用 `key:Cmd` 取代 `key:Ctrl`。 |
140 | 139 | ```
|
141 | 140 |
|
142 |
| -````warn header="Nested comments are not supported!" |
143 |
| -There may not be `/*...*/` inside another `/*...*/`. |
| 141 | +````warn header="不支援巢狀註解!" |
| 142 | +不能在 `/*...*/` 之內嵌入另一個 `/*...*/`。 |
144 | 143 |
|
145 |
| -Such code will die with an error: |
| 144 | +這樣的程式碼會掛點並產生錯誤: |
146 | 145 |
|
147 | 146 | ```js run no-beautify
|
148 | 147 | /*
|
149 |
| - /* nested comment ?!? */ |
| 148 | + /* 巢狀註解?!? */ |
150 | 149 | */
|
151 | 150 | alert( 'World' );
|
152 | 151 | ```
|
153 | 152 | ````
|
154 | 153 |
|
155 |
| -Please, don't hesitate to comment your code. |
| 154 | +不要猶豫,請開始註解你的代碼。 |
| 155 | + |
| 156 | +註解雖會增加整個程式碼數量,但那根本不是問題。有許多工具可以在程式推上正式伺服器前先最小化你的程式碼,它們會移除註解所以不會出現在運行的腳本上。因此,註解對於正式版來說根本沒負面影響。 |
156 | 157 |
|
157 |
| -Comments increase the overall code footprint, but that's not a problem at all. There are many tools which minify code before publishing to a production server. They remove comments, so they don't appear in the working scripts. Therefore, comments do not have negative effects on production at all. |
| 158 | +本教程之後有個章節 <info:code-quality> 將解釋如何寫出更好的註解。 |
158 | 159 |
|
159 |
| -Later in the tutorial there will be a chapter <info:code-quality> that also explains how to write better comments. |
0 commit comments