Merge pull request #87 from negarjf/patch-1

Typo
This commit is contained in:
Ilya Kantor 2017-07-11 20:07:44 +03:00 committed by GitHub
commit d1cf45eda8

View file

@ -145,7 +145,7 @@ An extract from the [precedence table](https://developer.mozilla.org/en/JavaScri
| 3 | assignment | `=` | | 3 | assignment | `=` |
| ... | ... | ... | | ... | ... | ... |
As we can see, the "unary plus" has a priority of `15`, higher than `13` for the "addition" (binary plus). That's why in the expression `"+apples + +oranges"` unary pluses work first, and then the addition. As we can see, the "unary plus" has a priority of `16`, higher than `13` for the "addition" (binary plus). That's why in the expression `"+apples + +oranges"` unary pluses work first, and then the addition.
## Assignment ## Assignment