@@ -0,0 +1,6 @@
// Fiyat hesaplama — Atölye Dükkânı
const INDIRIM = 10; // yüzde
function indirimliFiyat(fiyat) {
return fiyat - (fiyat * INDIRIM / 100);
}
The note is not visible to the blocked user.