From 084c2ac6bcf8ba1e307deff612a11a38ad99a9b8 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 20 Aug 2015 10:25:56 +0300 Subject: [PATCH] operators --- 1-js/2-first-steps/8-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 Обратим внимание, в таблице приоритетов также есть оператор присваивания `=`.