The nature is the best and fast feeling medicine which incure you . But this process is lengthy so far .
Author Archives: Shrijeet Ingle
The code for the making calculator …
<html> <head> <title> shrijeet </title> <script> //function that display value function dis(val) { document.getElementById(“result”).value+=val } //function that evaluates the digit and return result function solve() { let x = document.getElementById(“result”).value let y = eval(x) document.getElementById(“result”).value = y } //function that clear the display function clr() { document.getElementById(“result”).value = “” } </script> <!– for styling –>Continue reading “The code for the making calculator …”