Dükkân açıldı: README, sayfa, fiyat.js ve .gitignore

This commit is contained in:
Kullanici (Patron)
2026-07-30 03:31:41 +03:00
commit d24c242367
4 changed files with 28 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
// Fiyat hesaplama — Atölye Dükkânı
const INDIRIM = 10; // yüzde
function indirimliFiyat(fiyat) {
return fiyat - (fiyat * INDIRIM / 100);
}