We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 151e309 commit 482d176Copy full SHA for 482d176
zh-TW/README_zh-TW.md
@@ -2183,4 +2183,25 @@ console.log(name.padStart(2));
2183
</p>
2184
</details>
2185
2186
----
+---
2187
+
2188
+###### 70. 將會輸出什麽內容?
2189
2190
+```javascript
2191
+console.log('🥑' + '💻');
2192
+```
2193
2194
+- A: `"🥑💻"`
2195
+- B: `257548`
2196
+- C: 一個包含碼位(code point)的字串
2197
+- D: 錯誤
2198
2199
+<details><summary><b>答案</b></summary>
2200
+<p>
2201
2202
+#### 答案: A
2203
2204
+使用 `+` 運算元,你可以連接字串。在此例,我們將字串“🥑”與字串”💻“連接起來,產生”🥑💻“。
2205
2206
+</p>
2207
+</details>
0 commit comments