You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bir problemin çözümünü elde etmek için kendini tekrarlayan metodu tanımlama şeklidir. [Bu](/recursion) sayfa [recursion](/recursion)'a örnek gösterilebilir.
10
+
11
+
```js
12
+
functionfibonacci(x) {
13
+
if (x <=1) {
14
+
return1;
15
+
};
16
+
17
+
// Burada recursive olarak fibonacci fonksiyonunu tekrar çağırıyoruz.
0 commit comments