fix: style miss&&small content (#578)

This commit is contained in:
lvfangren
2022-01-21 23:53:34 +08:00
committed by GitHub
parent 469ee53274
commit feed68cecd
3 changed files with 5 additions and 3 deletions

View File

@@ -61,7 +61,7 @@ if (currentMoney >= laptopPrice){
}
```
## IF..Else Statement
## If..Else Statement
The `else` statement will run the code in between its blocks when the condition is false. It's optional with an `if` statement.

View File

@@ -62,7 +62,7 @@ if (currentMoney >= laptopPrice){
## If..Else 语句
`else` 语句会在条件为假的情况下运行它块中的代码。它后面可以跟一个 `if` 语句。
`else` 语句会在条件为假的情况下运行它块中的代码。它可以跟一个 `if` 语句后面
```javascript
let currentMoney;