Simple JavaScript Calculator Using Vanilla JavaScript

In this tutorial we have made Simple JavaScript Calculator Using Vanilla JavaScript. The HTML, CSS and JavaScript code is given below.

HTML Code

HTML Code is given below.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simple JAVASCRIPT CALCULATOR</title>
</head>
<body>
<form>
<h1>SIMPLE JAVASCRIPT CALCULATOR</h1>
<input id="input1" type="text" placeholder="Enter First Number">
<input id="input2" type="text" placeholder="Enter Second Number">
<input type="submit" onclick="add()" value="ADD">
<input type="submit" onclick="sub()" value="SUBTRACT">
<input type="submit" onclick="mul()" value="MULTIPLY">
<input type="submit" onclick="div()" value="DIVIDE">
<p>HowToCodeSchool.com</p>
</form>
</body>
</html>

CSS Code

CSS Code is given below.

body {
font-family: monospace;
display: flex;
align-items:center;
justify-content: center;
height: 100vh;
margin: 0px;
background-color: #22438C;
color: #fff;
}
form {
width: 700px;
text-align: center;
}
form input[type="text"],form input[type="submit"] {
width: 100%;
padding: 20px 5px;
font-weight: 900;
box-sizing: border-box;
background-color: #fff;
color: #22438C;
border: 1px solid #aaa;
}

JavaScript Code

JavaScript Code is given below. Four different functions are used for four different mathematical operations, addition, subtraction, multiplication and division.

<script>
function add()
{
var a = document.getElementById("input1").value;
var b = document.getElementById("input2").value;
var c= parseInt(a)+parseInt(b);
alert(c);
}
function sub()
{
var a = document.getElementById("input1").value;
var b = document.getElementById("input2").value;
var c=a-b;
alert(c);
}
function mul()
{
var a = document.getElementById("input1").value;
var b = document.getElementById("input2").value;
var c=a*b;
alert(c);
}
function div()
{
var a = document.getElementById("input1").value;
var b = document.getElementById("input2").value;
var c=a/b;
alert(c);
}
</script>

Demo

Video Tutorial

Watch video tutorial on how to create Simple JavaScript Calculator Using HTML, CSS and JavaScript.

Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript Change id of Element with JavaScript JavaScript Change li Text Color