Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
234e6ba
js.uk: 4 arrays
Sep 21, 2020
1364709
fix errors
Sep 21, 2020
ccf80a6
fix
Sep 21, 2020
0f5a847
Address some possible issues in translation of 1.2.9
vsemozhetbyt Sep 18, 2020
39fd695
Address some possible issues in 1.2.11
vsemozhetbyt Sep 20, 2020
4d0ed20
Address review suggestions
vsemozhetbyt Oct 3, 2020
f3d5f49
Merge pull request #118 from vsemozhetbyt/1.2.10
tarasyyyk Oct 3, 2020
e63ed1c
Update 1-js/02-first-steps/09-comparison/article.md
tarasyyyk Oct 3, 2020
c4c0d10
Merge pull request #117 from vsemozhetbyt/1.2.9
tarasyyyk Oct 3, 2020
0ec4f1a
Merge pull request #119 from vsemozhetbyt/1.2.11
tarasyyyk Oct 4, 2020
469f8b7
Merge branch 'master' into master
ArtemZununov Oct 7, 2020
0c13849
Update 1-js/05-data-types/04-array/1-item-value/solution.md
ArtemZununov Oct 21, 2020
e144e4c
Update 1-js/05-data-types/04-array/1-item-value/task.md
ArtemZununov Oct 21, 2020
f625bfd
Update 1-js/05-data-types/04-array/10-maximal-subarray/solution.md
ArtemZununov Oct 21, 2020
b292336
Update 1-js/05-data-types/04-array/10-maximal-subarray/solution.md
ArtemZununov Oct 21, 2020
18aa57d
Update 1-js/05-data-types/04-array/10-maximal-subarray/solution.md
ArtemZununov Oct 21, 2020
346df19
Update 1-js/05-data-types/04-array/article.md
ArtemZununov Oct 21, 2020
553d1bf
Update 1-js/05-data-types/04-array/article.md
ArtemZununov Oct 21, 2020
5c53bb0
Update 1-js/05-data-types/04-array/10-maximal-subarray/task.md
ArtemZununov Oct 21, 2020
3428177
Update 1-js/05-data-types/04-array/10-maximal-subarray/task.md
ArtemZununov Oct 21, 2020
0a33c74
Update 1-js/05-data-types/04-array/2-create-array/task.md
ArtemZununov Oct 21, 2020
9dda948
Update 1-js/05-data-types/04-array/10-maximal-subarray/task.md
ArtemZununov Oct 21, 2020
2959f84
Update 1-js/05-data-types/04-array/5-array-input-sum/solution.md
ArtemZununov Oct 21, 2020
f4a3cad
Update 1-js/05-data-types/04-array/3-call-array-this/solution.md
ArtemZununov Oct 21, 2020
3f3fd8d
Update 1-js/05-data-types/04-array/3-call-array-this/solution.md
ArtemZununov Oct 21, 2020
fbad78f
Update 1-js/05-data-types/04-array/article.md
ArtemZununov Oct 21, 2020
e3b6dc3
Update 1-js/05-data-types/04-array/3-call-array-this/task.md
ArtemZununov Oct 21, 2020
37e4fec
Update 1-js/05-data-types/04-array/3-call-array-this/task.md
ArtemZununov Oct 21, 2020
c934ebf
Update 1-js/05-data-types/04-array/5-array-input-sum/solution.md
ArtemZununov Oct 21, 2020
eab4e7e
Update 1-js/05-data-types/04-array/5-array-input-sum/task.md
ArtemZununov Oct 21, 2020
3daeba3
Update 1-js/05-data-types/04-array/article.md
ArtemZununov Oct 21, 2020
6695273
Update 1-js/05-data-types/04-array/article.md
ArtemZununov Oct 21, 2020
9155264
Update 1-js/05-data-types/04-array/article.md
ArtemZununov Oct 21, 2020
6b611f0
Update 1-js/05-data-types/04-array/article.md
ArtemZununov Oct 21, 2020
6946dc3
Merge branch 'master' into master
tarasyyyk Oct 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 1-js/05-data-types/04-array/3-call-array-this/solution.md
Co-authored-by: Taras <oster.ok@gmail.com>
  • Loading branch information
ArtemZununov and tarasyyyk authored Oct 21, 2020
commit 3f3fd8de9efa98d93f85347fb06e22e985ab1b6f
2 changes: 1 addition & 1 deletion 1-js/05-data-types/04-array/3-call-array-this/solution.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Виклик `arr[2]()` це - синтаксично старий та добрий `obj[method]()`, в ролі `obj` ми маємо `arr`, а в ролі `method` ми маємо `2`.
Виклик `arr[2]()` це - синтаксично старий-добрий `obj[method]()`, в ролі `obj` ми маємо `arr`, а в ролі `method` ми маємо `2`.

Ми маємо виклик функції `arr[2]` як методу об’єкту. Відповідно, він отримає в якості `this` об’єкт `arr` та виведе масив:

Expand Down