Merge pull request #1021 from ElfSundae/patch-1

Fix anchor link
This commit is contained in:
DanziChen
2020-01-27 22:41:21 +08:00
committed by GitHub

View File

@ -402,7 +402,7 @@ if !allowedEntry {
在示例代码中,小心地选择布尔常量或变量有助于代码的可读性,并且避免使用双重逻辑非运算,或混乱的逻辑语句。
### 逻辑与运算符 #{logical-and-operator}
### 逻辑与运算符 {#logical-and-operator}
*逻辑与运算符*`a && b`)表达了只有 `a``b` 的值都为 `true` 时,整个表达式的值才会是 `true`
@ -421,7 +421,7 @@ if enteredDoorCode && passedRetinaScan {
// 输出“ACCESS DENIED”
```
### 逻辑或运算符 #{logical-or-operator}
### 逻辑或运算符 {#logical-or-operator}
逻辑或运算符(`a || b`)是一个由两个连续的 `|` 组成的中置运算符。它表示了两个逻辑表达式的其中一个为 `true`,整个表达式就为 `true`