Duty and VAT Calculator UK
Calculate the duty and VAT payable on goods imported into the UK.
function calculateDutyAndVat(){
const itemValue = parseFloat(document.getElementById(“itemValue”).value);
const dutyRate = parseFloat(document.getElementById(“dutyRate”).value) / 100;
const vatRate = parseFloat(document.getElementById(“vatRate”).value) / 100;
if(isNaN(itemValue) || isNaN(dutyRate) || isNaN(vatRate) || itemValue el.value = “”);
}