Import Tax Calculator India
function calculateImportTax(){
const itemValue = parseFloat(document.getElementById(“itemValue”).value);
const customsDuty = parseFloat(document.getElementById(“customsDuty”).value) / 100;
const gst = parseFloat(document.getElementById(“gst”).value) / 100;
if(isNaN(itemValue) || isNaN(customsDuty) || isNaN(gst) || itemValue el.value = “”);
}