+ 1
How to make delete button in calculater program
2 odpowiedzi
+ 2
JS:
document.querySelector('.input_element').value="";
+ 2
Delete button should remove the last character from string or pop character from a list (assuming that string or list contains the result or group of operands and numbers that you display on the screen) .