-
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) · 797 Bytes
/
Copy pathindex.js
File metadata and controls
25 lines (25 loc) · 797 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=='X'){
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;
}
})
}