function calculateTurnover() { const units = document.getElementById('units').value; const price = document.getElementById('price').value; if (units && price) { const turnover = units * price; document.getElementById('turnover-result').innerText = turnover; } else { alert("Please enter both the number of units and the price per unit."); } }