I have 2 input box value `"bill_amount" with value 1250, "xray" with value 0
when i tried to find the sum it returns 12500 but when i tried to find the subtracted value it returns 1250 . why for addition it concat 0 while subtraction not including 0.
And how to avoid that?
console.log( document.getElementById("bill_amount").value-document.getElementById("xray").value);