Hello Reader's If you want to make the mathematic calculations inside the html document, Then by using the JS you can make calculations.
You just have to use the document.write() function.
Lets see it working in the example as below:-
<html>
<body>
<p>Your calculations will apear here.</p>
<button type="button" onclick="document.write(20 + 13)">Try it</button>
</body>
</html>
Now when the user will click the button the your calculation done in js will show up in para tag
0 Comment(s)