test-space / script.js
smolSWE's picture
Implement basic calculator app
7e6af95 verified
raw
history blame
404 Bytes
let display = document.getElementById('display');
function appendValue(value) {
display.value += value;
}
function clearDisplay() {
display.value = '';
}
function calculate() {
try {
display.value = eval(display.value);
} catch (error) {
display.value = 'Error';
}
}
function deleteLast() {
display.value = display.value.slice(0, -1);
}