Skip to content

Commit 4d303a4

Browse files
authored
Type Conversions (#16)
* Type Conversions * miss one word
1 parent 650c29b commit 4d303a4

File tree

3 files changed

+68
-67
lines changed

3 files changed

+68
-67
lines changed

1-js/02-first-steps/06-type-conversions/1-primitive-conversions-questions/solution.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ null + 1 = 1 // (5)
1616
undefined + 1 = NaN // (6)
1717
```
1818

19-
1. The addition with a string `"" + 1` converts `1` to a string: `"" + 1 = "1"`, and then we have `"1" + 0`, the same rule is applied.
20-
2. The subtraction `-` (like most math operations) only works with numbers, it converts an empty string `""` to `0`.
21-
3. The addition with a string appends the number `5` to the string.
22-
4. The subtraction always converts to numbers, so it makes `" -9 "` a number `-9` (ignoring spaces around it).
23-
5. `null` becomes `0` after the numeric conversion.
24-
6. `undefined` becomes `NaN` after the numeric conversion.
19+
1. 字串的加法 `"" + 1` 會轉換 `1` 為字串:`"" + 1 = "1"`,然後得到 `"1" + 0` 再利用一樣的規則。
20+
2. 減法 `-` (就像多數數學運算) 只能用在數值上,它將空字串 `""` 轉成 `0`
21+
3. 字串的加法會將數值 `5` 視為字串接在其後。
22+
4. 減法總是會轉換至數值,所以把 `" -9 "` 變成數值 `-9` (忽略環繞的空白)。
23+
5. `null` 經由數值轉換變成 `0`
24+
6. `undefined` 經由數值轉換變成 `NaN`
25+

1-js/02-first-steps/06-type-conversions/1-primitive-conversions-questions/task.md

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

33
---
44

5-
# Type conversions
5+
# 類型轉換
66

7-
What are results of these expressions?
7+
這些表達式的結果會是什麼?
88

99
```js no-beautify
1010
"" + 1 + 0
@@ -23,4 +23,5 @@ null + 1
2323
undefined + 1
2424
```
2525

26-
Think well, write down and then compare with the answer.
26+
好好想一下,把結果寫下來並和答案對照看看。
27+
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,111 @@
1-
# Type Conversions
1+
# 類型轉換
22

3-
Most of the time, operators and functions automatically convert the values given to them to the right type.
3+
大多時候,運算子和函式會自動轉換給予它們的值為正確類型。
44

5-
For example, `alert` automatically converts any value to a string to show it. Mathematical operations convert values to numbers.
5+
例如,`alert` 自動將任何值轉換成字串並顯示,數學運算子會把值轉換成數值。
66

7-
There are also cases when we need to explicitly convert a value to the expected type.
7+
當然某些情況我們得明確地轉換一個值至預期的類型。
88

9-
```smart header="Not talking about objects yet"
10-
In this chapter, we won't cover objects. Instead, we'll study primitives first. Later, after we learn about objects, we'll see how object conversion works in the chapter <info:object-toprimitive>.
9+
```smart header="還沒開始談到物件類型"
10+
在這章節,我們將不會轉換物件類型,我們會從原生類型開始說起。等晚點我們學完物件後,會在章節 <info:object-toprimitive> 中談到物件是如何被轉換的。
1111
```
1212

1313
## ToString
1414

15-
String conversion happens when we need the string form of a value.
15+
字串轉換發生在我們需要得到某個值的字串型態時。
1616

17-
For example, `alert(value)` does it to show the value.
17+
例如,`alert(value)` 就做這件事並顯示其值。
1818

19-
We can also call the `String(value)` function to convert a value to a string:
19+
我們也可以呼叫 `String(value)` 函式把一個值轉為字串:
2020

2121
```js run
2222
let value = true;
2323
alert(typeof value); // boolean
2424

2525
*!*
26-
value = String(value); // now value is a string "true"
26+
value = String(value); // 現在 value 是一個 "true" 字串
2727
alert(typeof value); // string
2828
*/!*
2929
```
3030

31-
String conversion is mostly obvious. A `false` becomes `"false"`, `null` becomes `"null"`, etc.
31+
字串轉換通常很直觀,一個 `false` 變成 `"false"``null` 變成 `"null"` 等。
3232

3333
## ToNumber
3434

35-
Numeric conversion happens in mathematical functions and expressions automatically.
35+
數值轉換自動發生在數學運算函式和表達式。
3636

37-
For example, when division `/` is applied to non-numbers:
37+
例如,當除法 `/` 被運用在非數值上時:
3838

3939
```js run
40-
alert( "6" / "2" ); // 3, strings are converted to numbers
40+
alert( "6" / "2" ); // 3,字串被轉成數值
4141
```
4242

43-
We can use the `Number(value)` function to explicitly convert a `value` to a number:
43+
我們可以使用 `Number(value)` 函式來明確地轉換一個 `value` 為一個數值:
4444

4545
```js run
4646
let str = "123";
4747
alert(typeof str); // string
4848

49-
let num = Number(str); // becomes a number 123
49+
let num = Number(str); // 變成數值 123
5050

5151
alert(typeof num); // number
5252
```
5353

54-
Explicit conversion is usually required when we read a value from a string-based source like a text form but expect a number to be entered.
54+
這種明確轉換通常用在,當我們從一個類似文字基底的來源讀取一個值,但預期它要被作為一個數值讀入時。
5555

56-
If the string is not a valid number, the result of such a conversion is `NaN`. For instance:
56+
如果該字串不是個有效的數值,轉換的結果會是 `NaN`,如:
5757

5858
```js run
59-
let age = Number("an arbitrary string instead of a number");
59+
let age = Number("任何非數字的字串");
6060

61-
alert(age); // NaN, conversion failed
61+
alert(age); // NaN,轉換失敗
6262
```
6363

64-
Numeric conversion rules:
64+
數值轉換規則:
6565

66-
| Value | Becomes... |
66+
| | 會變成... |
6767
|-------|-------------|
6868
|`undefined`|`NaN`|
6969
|`null`|`0`|
70-
|<code>true&nbsp;and&nbsp;false</code> | `1` and `0` |
71-
| `string` | Whitespaces from the start and end are removed. If the remaining string is empty, the result is `0`. Otherwise, the number is "read" from the string. An error gives `NaN`. |
70+
|<code>true&nbsp;&nbsp;false</code> | `1` `0` |
71+
| `string` | 先去除頭尾空白,如果剩下的字串是空字串則結果是 `0`,否則數值將被從剩下的字串中被 "讀取",此時若有錯誤將產生 `NaN` |
7272

73-
Examples:
73+
例子:
7474

7575
```js run
7676
alert( Number(" 123 ") ); // 123
77-
alert( Number("123z") ); // NaN (error reading a number at "z")
77+
alert( Number("123z") ); // NaN ("z" 讀取數值時產生錯誤)
7878
alert( Number(true) ); // 1
7979
alert( Number(false) ); // 0
8080
```
8181

82-
Please note that `null` and `undefined` behave differently here: `null` becomes zero while `undefined` becomes `NaN`.
82+
請注意 `null` `undefined` 的行為在此處不同:`null` 會變成零,而 `undefined` 會變成 `NaN`
8383

84-
````smart header="Addition '+' concatenates strings"
85-
Almost all mathematical operations convert values to numbers. A notable exception is addition `+`. If one of the added values is a string, the other one is also converted to a string.
84+
````smart header="加法 '+' 連接字串們"
85+
幾乎所有數學運算子都會將值轉成數值,而加法 `+` 是個值得一提的例外。如果加法某側運算元是個字串,另一側將也會被轉換成字串。
8686
87-
Then, it concatenates (joins) them:
87+
然後兩者將被連接:
8888
8989
```js run
90-
alert( 1 + '2' ); // '12' (string to the right)
91-
alert( '1' + 2 ); // '12' (string to the left)
90+
alert( 1 + '2' ); // '12' (右側為字串)
91+
alert( '1' + 2 ); // '12' (左側為字串)
9292
```
9393
94-
This only happens when at least one of the arguments is a string. Otherwise, values are converted to numbers.
94+
這只發生在當至少一側的引數是字串時,否則值都會被轉為數值。
9595
````
9696

9797
## ToBoolean
9898

99-
Boolean conversion is the simplest one.
99+
布林轉換是最簡單的一個。
100100

101-
It happens in logical operations (later we'll meet condition tests and other similar things) but can also be performed explicitly with a call to `Boolean(value)`.
101+
它發生在邏輯運算 (晚點我們將看到條件判斷和其它類似的東西),但也可以經由呼叫 `Boolean(value)` 來明確地轉換。
102102

103-
The conversion rule:
103+
轉換規則是:
104104

105-
- Values that are intuitively "empty", like `0`, an empty string, `null`, `undefined`, and `NaN`, become `false`.
106-
- Other values become `true`.
105+
- 直觀上是 "空白" 的值,像是 `0`、空字串、`null``undefined` `NaN`,都會變成 `false`
106+
- 其他值變成 `true`
107107

108-
For instance:
108+
例如:
109109

110110
```js run
111111
alert( Boolean(1) ); // true
@@ -115,46 +115,45 @@ alert( Boolean("hello") ); // true
115115
alert( Boolean("") ); // false
116116
```
117117

118-
````warn header="Please note: the string with zero `\"0\"` is `true`"
119-
Some languages (namely PHP) treat `"0"` as `false`. But in JavaScript, a non-empty string is always `true`.
118+
````warn header="請注意:包含零的字串 `\"0\"` 將會是 `true`"
119+
某些語言 (如 PHP) `"0"` `false`,但在 JavaScript 中,一個非空字串都會是 `true`
120120

121121
```js run
122122
alert( Boolean("0") ); // true
123-
alert( Boolean(" ") ); // spaces, also true (any non-empty string is true)
123+
alert( Boolean(" ") ); // 空白,也是 true (任何非空字串都是 true)
124124
```
125125
````
126126
127+
## 總結
127128
128-
## Summary
129+
三種最為廣泛使用的類型轉換是:轉字串、轉數值和轉布林。
129130
130-
The three most widely used type conversions are to string, to number, and to boolean.
131+
**`ToString`** - 用於當我們輸出某些東西時,可使用 `String(value)` 來轉換,原生值的字串的轉換通常是很直觀的。
131132
132-
**`ToString`** -- Occurs when we output something. Can be performed with `String(value)`. The conversion to string is usually obvious for primitive values.
133+
**`ToNumber`** - 用於數學運算,可使用 `Number(value)` 來轉換。
133134
134-
**`ToNumber`** -- Occurs in math operations. Can be performed with `Number(value)`.
135+
按照以下規則轉換:
135136
136-
The conversion follows the rules:
137-
138-
| Value | Becomes... |
137+
| 值 | 會變成... |
139138
|-------|-------------|
140139
|`undefined`|`NaN`|
141140
|`null`|`0`|
142141
|<code>true&nbsp;/&nbsp;false</code> | `1 / 0` |
143-
| `string` | The string is read "as is", whitespaces from both sides are ignored. An empty string becomes `0`. An error gives `NaN`. |
142+
| `string` | 字串 "依原樣" 讀取並忽略頭尾空白,若為空字串則為 `0`,有錯誤則成為 `NaN` |
144143
145-
**`ToBoolean`** -- Occurs in logical operations. Can be performed with `Boolean(value)`.
144+
**`ToBoolean`** - 用於邏輯運算,可使用 `Boolean(value)` 來轉換。
146145
147-
Follows the rules:
146+
規則是:
148147
149-
| Value | Becomes... |
148+
| | 會變成... |
150149
|-------|-------------|
151150
|`0`, `null`, `undefined`, `NaN`, `""` |`false`|
152-
|any other value| `true` |
151+
|其它值| `true` |
153152
153+
這些規則大多容易理解記憶,值得一提的是,大家常常在這些地方犯錯:
154154
155-
Most of these rules are easy to understand and memorize. The notable exceptions where people usually make mistakes are:
155+
- `undefined` 轉成數值是 `NaN` 而非 `0`。
156+
- `"0"` 和像是 `" "` 這種只包含空白的字串在轉成布林時是 true。
156157
157-
- `undefined` is `NaN` as a number, not `0`.
158-
- `"0"` and space-only strings like `" "` are true as a boolean.
158+
在此沒提到物件的轉換,我們將會晚點在專門介紹物件的章節 <info:object-toprimitive> 中提及,先讓我們了解更多 JavaScript 中基礎的內容。
159159
160-
Objects aren't covered here. We'll return to them later in the chapter <info:object-toprimitive> that is devoted exclusively to objects after we learn more basic things about JavaScript.

0 commit comments

Comments
 (0)