fiyat.js: büyük kampanya %25 (satır 2)

This commit is contained in:
masaustu-codex
2026-07-30 03:31:45 +03:00
parent 9366c691dd
commit 4c03e9a617
+1 -1
View File
@@ -1,5 +1,5 @@
// Fiyat hesaplama — Atölye Dükkânı
const INDIRIM = 10; // yüzde
const INDIRIM = 25; // yüzde — büyük kampanya
function sonFiyat(fiyat) {
return fiyat - (fiyat * INDIRIM / 100);