diff --git a/1-js/2-first-steps/8-operators/article.md b/1-js/2-first-steps/8-operators/article.md index fe35d3dc..2c09b2ce 100644 --- a/1-js/2-first-steps/8-operators/article.md +++ b/1-js/2-first-steps/8-operators/article.md @@ -141,7 +141,7 @@ An extract from the table: As we can see, the "unary plus" has a priority of `15`, higher than `13` for the ordinary "addition". That's why in the expression `+apples + +oranges` unary pluses worked first, and then the addition. -## Присваивание +## Assignment Обратим внимание, в таблице приоритетов также есть оператор присваивания `=`.