Skip to content

Commit 0e7cec0

Browse files
authored
Merge pull request #352 from jpnyunus/patch-1
variable name fix
2 parents dd843fa + 2025bf6 commit 0e7cec0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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)