taxcal

/* Function to calculate Income tax input is taxable income. Function created on 3rd September 2014 Function created by Shubharaj Buwa */ function tax(input) { if (input < 250001) { return “0”; } else if (input > 250000 && input < 500001) { return ((input – 250000)* 5 /100); } else if (input > 500000…