fiyat.js: sezon indirimi %15 (satır 2)

This commit is contained in:
Kullanici (Patron)
2026-07-30 03:31:45 +03:00
parent 9366c691dd
commit 529b4e3f3c
+1 -1
View File
@@ -1,5 +1,5 @@
// Fiyat hesaplama — Atölye Dükkânı
const INDIRIM = 10; // yüzde
const INDIRIM = 15; // yüzde — sezon ayarı
function sonFiyat(fiyat) {
return fiyat - (fiyat * INDIRIM / 100);