-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
27 lines (25 loc) · 850 Bytes
/
script.js
File metadata and controls
27 lines (25 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
let display = document.getElementById('display');
let buttons = Array.from(document.getElementsByClassName('button'));
buttons.map(button => {
button.addEventListener('click', (e) =>{
switch(e.target.innerText){
case 'C':
display.innerText = '';
break;
case '←':
if(display.innerText){
display.innerText = display.innerText.slice(0-1);
}
break;
case '=':
try{
display.innerText = eval(display.innerText);
} catch {
display.innerText ="ERROR";
}
break;
default:
display.innerText += e.target.innerText;
}
})
})