Write a javascript program to make a simple calculator
Answer Posted / san
<html>
<form name="cals">
<table border=1>
<tr>
<td>
<input type="text" name="text" size=15>
</td>
</tr>
<br>
<tr>
<td>
<input type="button" value="1" onclick="cals.text.value +='1'">
<input type="button" value="2" onclick="cals.text.value +='2'">
<input type="button" value="3" onclick="cals.text.value +='3'">
<input type="button" value="+" onclick="cals.text.value +='+'">
<br>
<input type="button" value="4" onclick="cals.text.value +='4'">
<input type="button" value="5" onclick="cals.text.value +='5'">
<input type="button" value="6" onclick="cals.text.value +='6'">
<input type="button" value="- " onclick="cals.text.value +='-'">
<br>
<input type="button" value="7" onclick="cals.text.value +='7'">
<input type="button" value="8" onclick="cals.text.value +='8'">
<input type="button" value="9" onclick="cals.text.value +='9'">
<input type="button" value="*" onclick="cals.text.value +='*'">
<br>
<input type="button" value="c" onclick="cals.text.value =''">
<input type="button" value="0" onclick="cals.text.value +='0'">
<input type="button" value="=" onclick="cals.text.value = eval(cals.text.value)">
<input type="button" value="/" onclick="cals.text.value +=' /'">
<br>
</td>
</tr>
</table>
</form>
</html>
| Is This Answer Correct ? | 11 Yes | 7 No |
Post New Answer View All Answers
What is the importance of javascript?
What does _ mean in javascript?
Explain promise in javascript?
Program to return the address family of a socket
How to shift and unshift using javascript?
How to detect browser name using JavaScript?
How to select an element by id and swapping an image?
What makes something a function?
What is the difference between typeof and instanceof operators in Javascript?
What are the characteristics of javascript ‘strict mode’?
How can I set up my own javascript error handler?
all possible test cases for normal number field,name field date field,check box,
What is string in javascript?
What is undefined in math?
What is the role of javascript in a web page?