Skip to content

Commit 195a530

Browse files
authored
Merge pull request lydiahallie#144 from regchiu/master
fix: Remove the extra symbols on README-zh_CN.md
2 parents d8e2e29 + 51c56ec commit 195a530

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README-zh_CN.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,8 +1040,8 @@ typeof sayHi()
10401040
```javascript
10411041
0
10421042
new Number(0)
1043-
;('')
1044-
;(' ')
1043+
('')
1044+
(' ')
10451045
new Boolean(false)
10461046
undefined
10471047
```
@@ -1130,12 +1130,12 @@ console.log(numbers)
11301130
###### 38. 输出是什么?
11311131

11321132
```javascript
1133-
;(() => {
1133+
(() => {
11341134
let x, y
11351135
try {
11361136
throw new Error()
11371137
} catch (x) {
1138-
;(x = 1), (y = 2)
1138+
(x = 1), (y = 2)
11391139
console.log(x)
11401140
}
11411141
console.log(x)
@@ -1188,7 +1188,7 @@ JavaScript 只有基本类型和对象。
11881188
###### 40. 输出是什么?
11891189

11901190
```javascript
1191-
;[[0, 1], [2, 3]].reduce(
1191+
[[0, 1], [2, 3]].reduce(
11921192
(acc, cur) => {
11931193
return acc.concat(cur)
11941194
},

0 commit comments

Comments
 (0)