Scientific Calculator for School

Scientific Calculator for School

Scientific Calculator for School

function addToInput(value) { document.getElementById(‘inputField’).value += value; } function calculateResult() { let input = document.getElementById(‘inputField’).value; try { document.getElementById(‘inputField’).value = eval(input); } catch (e) { document.getElementById(‘inputField’).value = ‘Error’; } } function clearInput() { document.getElementById(‘inputField’).value = ”; }

Leave a Reply

Your email address will not be published. Required fields are marked *