aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/operators/yield/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/javascript/reference/operators/yield/index.html')
-rw-r--r--files/ru/web/javascript/reference/operators/yield/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/javascript/reference/operators/yield/index.html b/files/ru/web/javascript/reference/operators/yield/index.html
index d30b1bbce5..34f3245f4d 100644
--- a/files/ru/web/javascript/reference/operators/yield/index.html
+++ b/files/ru/web/javascript/reference/operators/yield/index.html
@@ -18,7 +18,7 @@ translation_of: Web/JavaScript/Reference/Operators/yield
<h2 id="Syntax">Синтаксис</h2>
-<pre class="syntaxbox language-html notranslate"> [<em>rv</em>] = <strong>yield</strong> [[выражение]];</pre>
+<pre class="syntaxbox language-html"> [<em>rv</em>] = <strong>yield</strong> [[выражение]];</pre>
<dl>
<dt><code>выражение</code></dt>
@@ -39,7 +39,7 @@ translation_of: Web/JavaScript/Reference/Operators/yield
<p>Следующий фрагмент кода содержит определение функции-генератора и вспомогательной функции:</p>
-<pre class="brush: js notranslate">function* foo(){
+<pre class="brush: js">function* foo(){
var index = 0;
while(index &lt;= 2) // при достижении 2, done в yield станет true, а value undefined;
yield index++;
@@ -47,7 +47,7 @@ translation_of: Web/JavaScript/Reference/Operators/yield
<p>После того как тело функции-генератора определено, оно может использоваться для получения итератора:</p>
-<pre class="brush: js notranslate">var iterator = foo();
+<pre class="brush: js">var iterator = foo();
console.log(iterator.next()); // { value:0, done:false }
console.log(iterator.next()); // { value:1, done:false }
console.log(iterator.next()); // { value:2, done:false }