Remove quotes around AND operator
This commit is contained in:
parent
062388f403
commit
3f04442b79
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ Given multiple AND'ed values:
|
|||
result = value1 && value2 && value3;
|
||||
```
|
||||
|
||||
The AND `"&&"` operator does the following:
|
||||
The AND `&&` operator does the following:
|
||||
|
||||
- Evaluate operands from left to right.
|
||||
- For each operand, convert it to a boolean. If the result is `false`, stop and return the original value of that operand.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue