From 9a70d19d13196cbfe4199a4c160777c2dcbd5b3e Mon Sep 17 00:00:00 2001 From: Yana Klose-Ivanova <75987641+captainspring@users.noreply.github.com> Date: Sun, 25 Apr 2021 14:04:26 +0300 Subject: Deletes duplicate line in the example (#640) --- files/ru/web/javascript/reference/global_objects/array/fill/index.html | 1 - 1 file changed, 1 deletion(-) (limited to 'files/ru/web/javascript/reference/global_objects/array') 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] -- cgit v1.2.3-54-g00ecf