Entfernt Code-Kommentare mit Unterstützung für verschiedene Kommentarstile und Dokumentationsbewahrung
// Bu bir yorum satırıdır function hesapla() { // Değişken tanımlama let sonuc = 0; /* Bu bir çok satırlı yorum bloğudur */ for (let i = 0; i < 10; i++) { sonuc += i; // Toplama işlemi } return sonuc; }
Dil: JavaScript
function hesapla() { let sonuc = 0; for (let i = 0; i < 10; i++) { sonuc += i; } return sonuc; }