aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript
diff options
context:
space:
mode:
authorYana Klose-Ivanova <75987641+captainspring@users.noreply.github.com>2021-04-25 14:04:26 +0300
committerGitHub <noreply@github.com>2021-04-25 14:04:26 +0300
commit9a70d19d13196cbfe4199a4c160777c2dcbd5b3e (patch)
tree7ec0fd70e5d430b8063fa63f0e170fca234b1ba8 /files/ru/web/javascript
parent2b9f7c33b9e16c5e95509864e438032cd2c7fc85 (diff)
downloadtranslated-content-9a70d19d13196cbfe4199a4c160777c2dcbd5b3e.tar.gz
translated-content-9a70d19d13196cbfe4199a4c160777c2dcbd5b3e.tar.bz2
translated-content-9a70d19d13196cbfe4199a4c160777c2dcbd5b3e.zip
Deletes duplicate line in the example (#640)
Diffstat (limited to 'files/ru/web/javascript')
-rw-r--r--files/ru/web/javascript/reference/global_objects/array/fill/index.html1
1 files changed, 0 insertions, 1 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/array/fill/index.html b/files/ru/web/javascript/reference/global_objects/array/fill/index.html
index 3bb59fb99d..542e9638b7 100644
--- a/files/ru/web/javascript/reference/global_objects/array/fill/index.html
+++ b/files/ru/web/javascript/reference/global_objects/array/fill/index.html
@@ -61,7 +61,6 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/fill
[1, 2, 3].fill(4, 1, 2); // [1, 4, 3]
[1, 2, 3].fill(4, 1, 1); // [1, 2, 3]
[1, 2, 3].fill(4, 3, 3); // [1, 2, 3]
-[1, 2, 3].fill(4, 3, 3); // [1, 2, 3]
[1, 2, 3].fill(4, -3, -2); // [4, 2, 3]
[1, 2, 3].fill(4, NaN, NaN); // [1, 2, 3]
[1, 2, 3].fill(4, 3, 5); // [1, 2, 3]