aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/operators
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-03-21 15:34:50 +0300
committerGitHub <noreply@github.com>2021-03-21 15:34:50 +0300
commitfc853997358a3d2b6cd756655457af317b304d48 (patch)
treec6973ccc997f39a7c28ecdc935436856863b6c13 /files/ru/web/javascript/reference/operators
parent8b7a5fdbf9223d5ebbaed1c04801a61b5b88b870 (diff)
downloadtranslated-content-fc853997358a3d2b6cd756655457af317b304d48.tar.gz
translated-content-fc853997358a3d2b6cd756655457af317b304d48.tar.bz2
translated-content-fc853997358a3d2b6cd756655457af317b304d48.zip
Unify Russian translation of "See also" (#255)
Diffstat (limited to 'files/ru/web/javascript/reference/operators')
-rw-r--r--files/ru/web/javascript/reference/operators/async_function/index.html4
-rw-r--r--files/ru/web/javascript/reference/operators/bitwise_and/index.html2
-rw-r--r--files/ru/web/javascript/reference/operators/comma_operator/index.html2
-rw-r--r--files/ru/web/javascript/reference/operators/instanceof/index.html2
-rw-r--r--files/ru/web/javascript/reference/operators/new/index.html2
-rw-r--r--files/ru/web/javascript/reference/operators/this/index.html2
6 files changed, 7 insertions, 7 deletions
diff --git a/files/ru/web/javascript/reference/operators/async_function/index.html b/files/ru/web/javascript/reference/operators/async_function/index.html
index 2936baf4f4..989c55f61c 100644
--- a/files/ru/web/javascript/reference/operators/async_function/index.html
+++ b/files/ru/web/javascript/reference/operators/async_function/index.html
@@ -30,7 +30,7 @@ translation_of: Web/JavaScript/Reference/Operators/async_function
<h2 id="Описание">Описание</h2>
-<p>Выражение <code>async function</code> очень похоже, и имеет почти тот же синтаксис, что и {{jsxref('Statements/async_function', 'async function statement')}}. Главное отличие между выражениями async <code>function</code> и объявлениями async <code>function</code> заключается в <em>имени функции,</em> которое может быть опущено в выражении <code>async function</code> для создания <em>анонимной</em> функции. Выражение <code>async function</code> можно использовать в виде {{Glossary("IIFE")}} (Immediately Invoked Function Expression), и оно будет запущено сразу после объявления. См. также главу о <a href="/en-US/docs/Web/JavaScript/Reference/Functions">функциях</a>.</p>
+<p>Выражение <code>async function</code> очень похоже, и имеет почти тот же синтаксис, что и {{jsxref('Statements/async_function', 'async function statement')}}. Главное отличие между выражениями async <code>function</code> и объявлениями async <code>function</code> заключается в <em>имени функции,</em> которое может быть опущено в выражении <code>async function</code> для создания <em>анонимной</em> функции. Выражение <code>async function</code> можно использовать в виде {{Glossary("IIFE")}} (Immediately Invoked Function Expression), и оно будет запущено сразу после объявления. Смотрите также главу о <a href="/en-US/docs/Web/JavaScript/Reference/Functions">функциях</a>.</p>
<h2 id="Примеры">Примеры</h2>
@@ -138,7 +138,7 @@ add(10).then(v =&gt; {
</table>
</div>
-<h2 id="Смотри_также">Смотри также</h2>
+<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li>{{jsxref("Statements/async_function", "async function")}}</li>
diff --git a/files/ru/web/javascript/reference/operators/bitwise_and/index.html b/files/ru/web/javascript/reference/operators/bitwise_and/index.html
index 099bbe37cd..06764a1803 100644
--- a/files/ru/web/javascript/reference/operators/bitwise_and/index.html
+++ b/files/ru/web/javascript/reference/operators/bitwise_and/index.html
@@ -103,7 +103,7 @@ translation_of: Web/JavaScript/Reference/Operators/Bitwise_AND
<p>{{Compat("javascript.operators.bitwise_and")}}</p>
-<h2 id="См._также">См. также</h2>
+<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Bitwise">Bitwise operators in the JS guide</a></li>
diff --git a/files/ru/web/javascript/reference/operators/comma_operator/index.html b/files/ru/web/javascript/reference/operators/comma_operator/index.html
index de9bc91731..e1108dc7c9 100644
--- a/files/ru/web/javascript/reference/operators/comma_operator/index.html
+++ b/files/ru/web/javascript/reference/operators/comma_operator/index.html
@@ -97,7 +97,7 @@ console.log(x); // 6
<p>{{Compat("javascript.operators.comma")}}</p>
-<h2 id="Смотри_также">Смотри также</h2>
+<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li><a href="/ru/docs/Web/JavaScript/Reference/Statements/for">for loop</a></li>
diff --git a/files/ru/web/javascript/reference/operators/instanceof/index.html b/files/ru/web/javascript/reference/operators/instanceof/index.html
index a9274710e2..07d96f328d 100644
--- a/files/ru/web/javascript/reference/operators/instanceof/index.html
+++ b/files/ru/web/javascript/reference/operators/instanceof/index.html
@@ -157,7 +157,7 @@ var b = mycar instanceof Object; // возвращает true
<p>{{Compat("javascript.operators.instanceof")}}</p>
-<h2 id="См._также">См. также</h2>
+<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li><code><a href="/ru/docs/Web/JavaScript/Reference/Operators/typeof" title="/en-US/docs/JavaScript/Reference/Operators/typeof">typeof</a></code></li>
diff --git a/files/ru/web/javascript/reference/operators/new/index.html b/files/ru/web/javascript/reference/operators/new/index.html
index 6afdd75f04..e6d42cf137 100644
--- a/files/ru/web/javascript/reference/operators/new/index.html
+++ b/files/ru/web/javascript/reference/operators/new/index.html
@@ -209,7 +209,7 @@ var car2 = new Car("Nissan", "300ZX", 1992, ken);
</table>
</div>
-<h2 id="См._также">См. также</h2>
+<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li>{{jsxref("Function")}}</li>
diff --git a/files/ru/web/javascript/reference/operators/this/index.html b/files/ru/web/javascript/reference/operators/this/index.html
index b373d12fa1..8b19167be8 100644
--- a/files/ru/web/javascript/reference/operators/this/index.html
+++ b/files/ru/web/javascript/reference/operators/this/index.html
@@ -403,7 +403,7 @@ for (var i = 0; i &lt; elements.length; i++) {
<p>{{Compat("javascript.operators.this")}}</p>
-<h2 id="See_also" name="See_also">Смотри также</h2>
+<h2 id="See_also" name="See_also">Смотрите также</h2>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode">Строгий режим</a></li>