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
Programming languages that allow such things are called "dynamically typed", meaning that there are data types, but variables are not bound to any of them.
alert( `the result is *!*${1+2}*/!*` ); // the result is 3
93
94
```
94
95
95
-
The expression inside `${…}`is evaluated and the result becomes a part of the string. We can put anything in there: a variable like `name`or an arithmetical expression like `1 + 2`or something more complex.
The meaning of `undefined`is "value is not assigned".
154
+
`undefined`的意義是 "值尚未指定"。
154
155
155
-
If a variable is declared, but not assigned, then its value is `undefined`:
156
+
如果一個變數被宣告了但還沒被賦予值,那它的值就是 `undefined`:
156
157
157
158
```js run
158
159
let x;
159
160
160
-
alert(x); //shows "undefined"
161
+
alert(x); //顯示 "undefined"
161
162
```
162
163
163
-
Technically, it is possible to assign `undefined`to any variable:
164
+
技術上來說,可以把 `undefined`指定給任何變數:
164
165
165
166
```js run
166
167
let x =123;
@@ -170,28 +171,28 @@ x = undefined;
170
171
alert(x); // "undefined"
171
172
```
172
173
173
-
...But we don't recommend doing that. Normally, we use `null`to assign an "empty" or "unknown" value to a variable, and we use `undefined`for checks like seeing if a variable has been assigned.
All other types are called "primitive" because their values can contain only a single thing (be it a string or a number or whatever). In contrast, objects are used to store collections of data and more complex entities. We'll deal with them later in the chapter <info:object>after we learn more about primitives.
The `typeof`operator returns the type of the argument. It's useful when we want to process values of different types differently or just want to do a quick check.
1.`Math` is a built-in object that provides mathematical operations. We will learn it in the chapter <info:number>. Here, it serves just as an example of an object.
223
-
2. The result of `typeof null` is `"object"`. That's wrong. It is an officially recognized error in `typeof`, kept for compatibility. Of course, `null` is not an object. It is a special value with a separate type of its own. So, again, this is an error in the language.
224
-
3. The result of `typeof alert` is `"function"`, because `alert` is a function. We'll study functions in the next chapters where we'll also see that there's no special "function" type in JavaScript. Functions belong to the object type. But `typeof` treats them differently, returning `"function"`. That's not quite correct, but very convenient in practice.
225
227
228
+
## 總結
226
229
227
-
## Summary
230
+
在 JavaScript 中有 7 種基礎資料類型:
228
231
229
-
There are 7 basic data types in JavaScript.
232
+
-`number` 用於任何類型的數值:整數或浮點數。
233
+
-`string` 用於字串。一個字串可以包含一個或多個字元,但不獨立存在單一字元的類型。
234
+
-`boolean` 用於 `true` 或 `false`。
235
+
-`null` 用於未知的值 - 只有一個值 `null` 的獨立類型。
236
+
-`undefined` 用於尚未指定值 - 只有一個值 `undefined` 的獨立類型。
237
+
-`object` 用於更為複雜的資料結構。
238
+
-`symbol` 用於獨特的識別符。
230
239
231
-
-`number` for numbers of any kind: integer or floating-point.
232
-
-`string` for strings. A string may have one or more characters, there's no separate single-character type.
233
-
-`boolean` for `true`/`false`.
234
-
-`null` for unknown values -- a standalone type that has a single value `null`.
235
-
-`undefined` for unassigned values -- a standalone type that has a single value `undefined`.
236
-
-`object` for more complex data structures.
237
-
-`symbol` for unique identifiers.
240
+
`typeof` 運算子讓我們確認變數中儲存的類型。
238
241
239
-
The `typeof` operator allows us to see which type is stored in a variable.
242
+
- 兩種格式:`typeof x` 或 `typeof(x)`。
243
+
- 回傳一個類型名稱的字串,像是 `"string"`。
244
+
- 對於 `null` 回傳 `"object"` - 這是語言中的錯誤,它實際上不是個物件。
240
245
241
-
- Two forms: `typeof x` or `typeof(x)`.
242
-
- Returns a string with the name of the type, like `"string"`.
243
-
- For `null` returns `"object"` -- this is an error in the language, it's not actually an object.
246
+
接下來的章節中,我們將更專注於介紹原生類型,一旦對它們更熟悉了,就會開始來介紹物件。
244
247
245
-
In the next chapters, we'll concentrate on primitive values and once we're familiar with them, we'll move on to objects.
0 commit comments