-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
26 lines (25 loc) · 731 Bytes
/
index.js
File metadata and controls
26 lines (25 loc) · 731 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
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;
}
})
}