Take Home Salary Calculator 2023

Here is the post. thank you.

Calculator2



var ni = 0; if (taxableIncome > niUpperThreshold) { ni = (niUpperThreshold - niThreshold) * niRate; ni += (taxableIncome - niUpperThreshold) * niUpperRate; } else if (taxableIncome > niThreshold) { ni = (taxableIncome - niThreshold) * niRate; }

// Calculate net income per month and week var netIncome = taxableIncome - tax - ni; var netMonthly = (netIncome / 12).toFixed(2); var netWeekly = (netIncome / 52).toFixed(2);

// Display results var results = document.getElementById("results"); results.innerHTML = "

Monthly Net Salary: £" + netMonthly + "

" + "

Weekly Net Salary: £" + netWeekly + "

"; }