Write a javascript program to make a simple calculator
Answer Posted / s.suresh
<html>
<form name="calculator">
<table border=4>
<tr>
<td>
<input type="text" name="text" size="18">
<br>
</td>
</tr>
<tr>
<td>
<input type="button" value="1"
onclick="calculator.text.value += '1'">
<input type="button" value="2"
onclick="calculator.text.value += '2'">
<input type="button" value="3"
onclick="calculator.text.value += '3'">
<input type="button" value="+"
onclick="calculator.text.value += ' + '">
<br>
<input type="button" value="4"
onclick="calculator.text.value += '4'">
<input type="button" value="5"
onclick="calculator.text.value += '5'">
<input type="button" value="6"
onclick="calculator.text.value += '6'">
<input type="button" value="-"
onclick="calculator.text.value += ' - '">
<br>
<input type="button" value="7"
onclick="calculator.text.value += '7'">
<input type="button" value="8"
onclick="calculator.text.value += '8'">
<input type="button" value="9"
onclick="calculator.text.value += '9'">
<input type="button" value="*"
onclick="calculator.text.value += ' * '">
<br>
<input type="button" value="c"
onclick="calculator.text.value = ''">
<input type="button" value="0"
onclick="calculator.text.value += '0'">
<input type="button" value="="
onclick="calculator.text.value = eval(calculator.text.value)">
<input type="button" value="/"
onclick="calculator.text.value += ' / '">
<br>
</td>
</tr>
</table>
</form>
</html>
| Is This Answer Correct ? | 11 Yes | 8 No |
Post New Answer View All Answers
How to convert json string to object?
Explain higher-order functions in javascript?
What is javascript namespacing?
How to delete an array entry using javascript?
What is the default scope in javascript?
What is the statement to enable strict mode in javascript quiz?
How do I install javascript?
List some features of javascript.
Why is javascript so important?
Explain the steps for connecting the system to Internet.
What is argument objects in javascript & how to get the type of arguments passed to a function?
what difference between args.length and args.length() in command line argument?
Is jquery easier than javascript?
How to detect browser name using JavaScript?
Is javascript becoming obsolete?