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.
2 parents d8e2e29 + 51c56ec commit 195a530Copy full SHA for 195a530
README-zh_CN.md
@@ -1040,8 +1040,8 @@ typeof sayHi()
1040
```javascript
1041
0
1042
new Number(0)
1043
-;('')
1044
-;(' ')
+('')
+(' ')
1045
new Boolean(false)
1046
undefined
1047
```
@@ -1130,12 +1130,12 @@ console.log(numbers)
1130
###### 38. 输出是什么?
1131
1132
1133
-;(() => {
+(() => {
1134
let x, y
1135
try {
1136
throw new Error()
1137
} catch (x) {
1138
- ;(x = 1), (y = 2)
+ (x = 1), (y = 2)
1139
console.log(x)
1140
}
1141
@@ -1188,7 +1188,7 @@ JavaScript 只有基本类型和对象。
1188
###### 40. 输出是什么?
1189
1190
1191
-;[[0, 1], [2, 3]].reduce(
+[[0, 1], [2, 3]].reduce(
1192
(acc, cur) => {
1193
return acc.concat(cur)
1194
},
0 commit comments