Take Home Salary Calculator 2023 / Uncategorized Here is the post. thank you. Calculator2 Annual Income: Pension Contribution (%): Calculate 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 + " "; } Email * If you are human, leave this field blank. Submit