-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
25 lines (25 loc) · 715 Bytes
/
index.js
File metadata and controls
25 lines (25 loc) · 715 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
let screen=document.getElementById('screen');
buttons=document.querySelectorAll('button');
let screenValue=' ';
for(item of buttons){
item.addEventListener('click',(e)=>{
buttonText=e.target.innerText;
console.log('Button text is ',buttonText);
if(buttonText=='✕'){
buttonText='*';
screenValue+=buttonText;
screen.value=screenValue;
}
else if(buttonText=='C'){
screenValue=" ";
screen.value=screenValue;
}
else if(buttonText=='='){
screen.value=eval(screenValue);
}
else{
screenValue+=buttonText;
screen.value=screenValue;
}
})
}