Made description of logical operator under "or operator" challenge a little more intuitive. (#37772)

* Update comparisons-with-the-logical-or-operator.english.md

* Update comparisons-with-the-logical-or-operator.english.md

* Update comparisons-with-the-logical-or-operator.english.md
This commit is contained in:
Marco Valero 2019-11-16 21:30:52 -05:00 committed by Manish Giri
parent 5ca2d2467a
commit fc1a923dd5

View File

@ -9,7 +9,7 @@ forumTopicId: 16800
## Description
<section id='description'>
The <dfn>logical or</dfn> operator (<code>||</code>) returns <code>true</code> if either of the <dfn>operands</dfn> is <code>true</code>. Otherwise, it returns <code>false</code>.
The <dfn>logical or</dfn> operator is composed of two pipe symbols (<code>|</code>). This can typically be found between your Backspace and Enter keys.
The <dfn>logical or</dfn> operator is composed of two pipe symbols: (<code>||</code>). This can typically be found between your Backspace and Enter keys.
The pattern below should look familiar from prior waypoints:
```js