<!DOCTYPE html>
Simple Calculator
<br> .calculator {<br> width: 200px;<br> padding: 10px;<br> border: 1px solid #ccc;<br> border-radius: 5px;<br> background-color: #f9f9f9;<br> }<br> input {<br> width: 100%;<br> margin-bottom: 5px;<br> }<br>
C
7
8
9
+
4
5
6
-
1
2
3
*
0
.
=
/
<br>
function appendToResult(value) {<br>
document.getElementById('result').value += value;<br>
}</p>
<div class="highlight"><pre class="highlight plaintext"><code>function clearResult() {
document.getElementById('result').value = '';
}
function calculateResult() {
const result = eval(document.getElementById('result').value);
document.getElementById('result').value = result;
}
</code></pre></div>
<p>
Top comments (0)