In the below code im going to add two number but there not add just shows me two numbers respectively.
var gross = $('#txtgross').val();// 226800.00
tax = ((vat) + (nbt)); // vat is 34020.00 and nbt is 4536.00
net = ((gross) + tax.toFixed(2)); // 226800.00 38556.00 <-- in here not calculated but it just shows the Gross & Total Tax (nbt + vat) amounts respectively