0
simple calculator using js
<!DOCTYPE html> <html> <head> <script> Â function func1() Â { Â var numb1 = parseFloat(document.getElementById('numb1').value); Â Â Â Â Â Â Â Â var numb2 = parseFloat(document.getElementById('numb2').value); Â var opp = document.getElementById('operators').value; Â if(opp==='+') Â { Â document.getElementById('result').value=numb1+numb2; Â } Â if(opp==='-') Â { Â document.getElementById('result').value=numb1-numb2; Â } Â if(opp==='*') Â { Â document.getElementById('result').value=numb1*n
1 Answer
+ 7
Yes and?
Why this spam?