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
Most of the time, operators and functions automatically convert the values given to them to the right type.
3
+
大多時候,運算子和函式會自動轉換給予它們的值為正確類型。
4
4
5
-
For example, `alert`automatically converts any value to a string to show it. Mathematical operations convert values to numbers.
5
+
例如,`alert`自動將任何值轉換成字串並顯示,數學運算子會把值轉換成數值。
6
6
7
-
There are also cases when we need to explicitly convert a value to the expected type.
7
+
當然某些情況我們得明確地轉換一個值至預期的類型。
8
8
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>.
|`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`.|
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.
This only happens when at least one of the arguments is a string. Otherwise, values are converted to numbers.
94
+
這只發生在當至少一側的引數是字串時,否則值都會被轉為數值。
95
95
````
96
96
97
97
## ToBoolean
98
98
99
-
Boolean conversion is the simplest one.
99
+
布林轉換是最簡單的一個。
100
100
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)`.
**`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)` 來轉換。
133
134
134
-
**`ToNumber`** -- Occurs in math operations. Can be performed with `Number(value)`.
135
+
按照以下規則轉換:
135
136
136
-
The conversion follows the rules:
137
-
138
-
| Value | Becomes... |
137
+
| 值 | 會變成... |
139
138
|-------|-------------|
140
139
|`undefined`|`NaN`|
141
140
|`null`|`0`|
142
141
|<code>true / 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`. |
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