Write a javascript program to make a simple calculator

Answer Posted / krishna

<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 ?    8 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between textContent and innerText?

501


How do I use javascript to password-protect my web site?

479


What is variable typing in javascript?

529


Can you assign an anonymous function to a variable?

492


What does break and continue statements do in javascript?

519






What does the enableviewstatemac setting in an aspx page do?

516


What is difference between deep and shallow object coping in javascript?

521


What does javascript do?

448


What is javascript used for in web design?

464


What is use of JavaScript and jquery?

556


what is event bubbling and event capturing in javascript?

502


How to change video files randomly after completing its execution in Javascript?

1858


What is node value?

488


What is shift() method in javascript?

492


What is the use of a weakset object in javascript?

533