Skip to content

Commit 3c07774

Browse files
authored
🍂 update solution
1 parent e268cdc commit 3c07774

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/04-array/3-call-array-this

1 file changed

+1
-1
lines changed

1-js/05-data-types/04-array/3-call-array-this/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ arr.push(function() {
99
alert( this );
1010
})
1111

12-
arr[2](); // "a","b",function
12+
arr[2](); // a,b,function(){...}
1313
```
1414

1515
У массива в итоге 3 элемента: сначала их было 2, плюс функция.

0 commit comments

Comments
 (0)