Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ _Good 👍🏻_

```javascript
try {
// 意料之外的情况。
// Imeko engalindelekanga.
} catch (error) {
// tss... 🤫
}
Expand Down Expand Up @@ -174,7 +174,7 @@ function square() {
x = x ** 2;
}

square(); // 现在x是25
square(); // Nüüd x on 25
```

_Bad 👎🏻_
Expand Down Expand Up @@ -254,7 +254,7 @@ function square(num) {
else {
return num ** 2;
}
return null; // 这就是我的"Plan B".
return null; // Это мой "План Б".
}
```

Expand Down