Yorum Satırları 🐥
JavaScript dilinde yorum satırları nasıl kullanılır bu bölümde onu öğreneceğiz.
Tek Satırlık Yorumlar
// Fibonacci serisini hesaplayan metod.
function fibonacci(num){
var a = 1, b = 0, temp;
while (num >= 0) {
// Swap işlemi yapalım.
temp = a;
a = a + b;
b = temp;
num--;
}
return b;
}Ufak bir örnek;
Çok Satırlı Yorumlar
Last updated
Was this helpful?