netto izracun

by Igor Cuckovic

JavaScript

const base = 280;

const tenPercent = base * 1/10;

const pdvOfTP = tenPercent * 1/4;

const result = base - (tenPercent + pdvOfTP)

console.log(result + 70)