aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/operators/addition/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/javascript/reference/operators/addition/index.html')
-rw-r--r--files/ru/web/javascript/reference/operators/addition/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/javascript/reference/operators/addition/index.html b/files/ru/web/javascript/reference/operators/addition/index.html
index 944ef3d8a7..c9b2961231 100644
--- a/files/ru/web/javascript/reference/operators/addition/index.html
+++ b/files/ru/web/javascript/reference/operators/addition/index.html
@@ -18,14 +18,14 @@ translation_of: Web/JavaScript/Reference/Operators/Addition
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="syntaxbox notranslate"><strong>Оператор:</strong> <var>x</var> + <var>y</var>
+<pre class="syntaxbox"><strong>Оператор:</strong> <var>x</var> + <var>y</var>
</pre>
<h2 id="Примеры">Примеры</h2>
<h3 id="Сложение_чисел">Сложение чисел</h3>
-<pre class="brush: js notranslate">// Number + Number -&gt; addition
+<pre class="brush: js">// Number + Number -&gt; addition
1 + 2 // 3
// Boolean + Number -&gt; addition
@@ -37,7 +37,7 @@ false + false // 0
<h3 id="Сложение_строк">Сложение строк</h3>
-<pre class="brush: js notranslate">// String + String -&gt; concatenation
+<pre class="brush: js">// String + String -&gt; concatenation
'foo' + 'bar' // "foobar"
// Number + String -&gt; concatenation