From 0826b6f5f018ced9844743b7e31a2abcf335a39f Mon Sep 17 00:00:00 2001 From: laptop-claude Date: Thu, 30 Jul 2026 03:31:44 +0300 Subject: [PATCH] =?UTF-8?q?fiyat.js:=20indirimliFiyat()=20yeniden=20adland?= =?UTF-8?q?=C4=B1=20=E2=86=92=20sonFiyat()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fiyat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fiyat.js b/fiyat.js index d9d03ef..e21bc4e 100644 --- a/fiyat.js +++ b/fiyat.js @@ -1,7 +1,7 @@ // Fiyat hesaplama — Atölye Dükkânı const INDIRIM = 10; // yüzde -function indirimliFiyat(fiyat) { +function sonFiyat(fiyat) { return fiyat - (fiyat * INDIRIM / 100); }