Skip to content

Commit 81c1d41

Browse files
authored
Merge pull request #248 from Furkan-Gulsen/patch-7
converting "next" to "sonraki"
2 parents 7035f3f + 540194c commit 81c1d41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

1-js/06-advanced-functions/01-recursion/article.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -473,16 +473,16 @@ Burada görüldüğü üzere her obje `deger`e sahiptir ve komşusu olan `sonrak
473473
Liste kolayca birçok parçaya bölünebilir ve sonradan tek bir yapı haline getirilebilir:
474474

475475
```js
476-
let ikinciList = list.next.next;
477-
list.next.next = null;
476+
let ikinciList = list.sonraki.sonraki;
477+
list.sonraki.sonraki = null;
478478
```
479479

480480
![linked list ayırma](linked-list-split.svg)
481481

482482
Birleştirme:
483483

484484
```js
485-
list.next.next = ikinciList;
485+
list.sonraki.sonraki = ikinciList;
486486
```
487487
Ve istenildiği gibi elemanlar bir yerden silinebilir veya eklenebilir.
488488

0 commit comments

Comments
 (0)