Fixed sentence for readability.

This commit is contained in:
Alex Hughes 2017-07-16 16:14:17 -04:00 committed by GitHub
parent 50483c319c
commit 52c807e6bc

View file

@ -164,7 +164,7 @@ let accessAllowed = age > 18;
## Multiple '?'
A sequence of question mark `"?"` operators allows to return a value depending on more than one condition.
A sequence of question mark `"?"` operators allows returning a value that depends on more than one condition.
For instance:
```js run