@@ -4,3 +4,9 @@ const INDIRIM = 10; // yüzde
function indirimliFiyat(fiyat) {
return fiyat - (fiyat * INDIRIM / 100);
}
const KDV = 20; // yüzde
function kdvliFiyat(fiyat) {
return fiyat + (fiyat * KDV / 100);
The note is not visible to the blocked user.