fiyat.js: indirimliFiyat() yeniden adlandı → sonFiyat()

This commit is contained in:
laptop-claude
2026-07-30 03:31:44 +03:00
parent 5fd754bb7b
commit 0826b6f5f0
+1 -1
View File
@@ -1,7 +1,7 @@
// Fiyat hesaplama — Atölye Dükkânı // Fiyat hesaplama — Atölye Dükkânı
const INDIRIM = 10; // yüzde const INDIRIM = 10; // yüzde
function indirimliFiyat(fiyat) { function sonFiyat(fiyat) {
return fiyat - (fiyat * INDIRIM / 100); return fiyat - (fiyat * INDIRIM / 100);
} }