netto izracun
JavaScript
const base = 280;
const tenPercent = base * 1/10;
const pdvOfTP = tenPercent * 1/4;
const result = base - (tenPercent + pdvOfTP)
console.log(result + 70)
const base = 280;
const tenPercent = base * 1/10;
const pdvOfTP = tenPercent * 1/4;
const result = base - (tenPercent + pdvOfTP)
console.log(result + 70)