aboutsummaryrefslogtreecommitdiff
path: root/files/ru
diff options
context:
space:
mode:
authorOlga <olga.khomich13@gmail.com>2021-05-03 11:36:27 +0300
committerGitHub <noreply@github.com>2021-05-03 11:36:27 +0300
commita90e93b5aa3366ea974f2674545a63b1625d32ba (patch)
treee7ef3f94bb65c745294d40505140a1111c2bce30 /files/ru
parent01d82319d26f908e24379d8c04acd8c99e498a2c (diff)
downloadtranslated-content-a90e93b5aa3366ea974f2674545a63b1625d32ba.tar.gz
translated-content-a90e93b5aa3366ea974f2674545a63b1625d32ba.tar.bz2
translated-content-a90e93b5aa3366ea974f2674545a63b1625d32ba.zip
Remove old example from javascript functions guide ru (according to the english version) (#518)
* Update index.html "for in" return keys * Remove old example Remove old example from javascript functions guide (according to the english version) Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
Diffstat (limited to 'files/ru')
-rw-r--r--files/ru/web/javascript/guide/functions/index.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/files/ru/web/javascript/guide/functions/index.html b/files/ru/web/javascript/guide/functions/index.html
index b4eeae4c1a..433c6647db 100644
--- a/files/ru/web/javascript/guide/functions/index.html
+++ b/files/ru/web/javascript/guide/functions/index.html
@@ -518,20 +518,6 @@ myConcat('; ', 'elephant', 'giraffe', 'lion', 'cheetah');
myConcat('. ', 'sage', 'basil', 'oregano', 'pepper', 'parsley');
</pre>
-<p>Т.к. <code>arguments</code> является псевдо-массивом, к нему применимы некоторые методы массивов, например, for .. in</p>
-
-<pre>function func() {
- for (value in arguments){
- console.log(value);
- }
-}
-
-func(1, 2, 3);
-// 1
-// 2
-// 3
-</pre>
-
<div class="note">
<p><strong>Примечание:</strong> <code>arguments</code> является псевдо-массивом, но не массивом. Это псевдо-массив, в котором есть пронумерованные индексы и свойство <code>length</code>. Однако он не обладает всеми методами массивов.</p>
</div>