Merge pull request #99 from alxhghs/patch-4

Fixed sentence for readability.
This commit is contained in:
Ilya Kantor 2017-07-17 00:22:42 +03:00 committed by GitHub
commit 34078151bf

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