We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e268cdc commit 3c07774Copy full SHA for 3c07774
1-js/05-data-types/04-array/3-call-array-this/solution.md
@@ -9,7 +9,7 @@ arr.push(function() {
9
alert( this );
10
})
11
12
-arr[2](); // "a","b",function
+arr[2](); // a,b,function(){...}
13
```
14
15
У массива в итоге 3 элемента: сначала их было 2, плюс функция.
0 commit comments