We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd843fa commit 2025bf6Copy full SHA for 2025bf6
1-js/05-data-types/04-array/article.md
@@ -63,7 +63,7 @@ Dizi her türlü elemanı tutabilir.
63
let arr = [ 'Elma', { isim: 'Ahmet' }, true, function() { alert('merhaba'); } ];
64
65
// Birinci indeksteki değeri al ve "isim" özelliğini görüntüle
66
-alert( arr[1].name ); // John
+alert( arr[1].isim ); // John
67
68
// 3. indeksteki fonksiyonu al ve çalıştır.
69
arr[3](); // merhaba
0 commit comments