Skip to content

Commit 482d176

Browse files
committed
Translation zh-TW answer 70
1 parent 151e309 commit 482d176

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

zh-TW/README_zh-TW.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2183,4 +2183,25 @@ console.log(name.padStart(2));
21832183
</p>
21842184
</details>
21852185

2186-
---
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

Comments
 (0)