Skip to content

Commit 6fa86e6

Browse files
authored
Merge branch 'javascript-tutorial:master' into Form-properties-and-methods
2 parents 3a0893d + 1ba271c commit 6fa86e6

File tree

3 files changed

+92
-80
lines changed

3 files changed

+92
-80
lines changed

1-js/05-data-types/04-array/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Dizi her türlü elemanı tutabilir.
6363
let arr = [ 'Elma', { isim: 'Ahmet' }, true, function() { alert('merhaba'); } ];
6464

6565
// Birinci indeksteki değeri al ve "isim" özelliğini görüntüle
66-
alert( arr[1].name ); // John
66+
alert( arr[1].isim ); // John
6767

6868
// 3. indeksteki fonksiyonu al ve çalıştır.
6969
arr[3](); // merhaba

0 commit comments

Comments
 (0)