Write a javascript program to make a simple calculator

Answer Posted / raghav seth

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 ?    63 Yes 21 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

accessdenied javanet disconnet

1580


What is a nan value?

499


How do you include a comment in javascript?

479


What is encodeuri() in javascript?

546


What is the best site to learn javascript?

476






What is difference between scripting and programming?

446


What is the use of a date object in javascript?

557


How to convert a string to lowercase?

579


How to set the focus in an element using javascript?

498


What is escape & unescape String functions in JavaScript?

545


How do I enable cookies and javascript?

490


Is it possible to do 301 redirects in javascript ?

486


What are parameters in javascript?

479


what is a code in vb amount display in words

1364


To set all checkboxes to true using javascript?

559