Make a simple calculator in html with source code
html>
<head>
<script>
function num(val)
{
document.getElementById("result").value+=val
}
function solve()
{
let x = document.getElementById("result").value
let y = eval(x)
document.getElementById("result").value = y
}
Download full source code file below:
gain other technical tricks follow this site:https://www.techsawesome.in/
0 Comments