Programming with JavaScript

⌘K
  1. Home
  2. Docs
  3. Programming with JavaScri...
  4. Example Programs
  5. Calculator using if else

Calculator using if else

Example 21

Write a JavaScript to perform calculator functions using if..else..if

Code

const prompt = require("prompt-sync")();

let operator = prompt("Enter the operator (+, -, *, /) :");
let n1 = prompt("Enter the number : ");
n1 = parseInt(n1);
let n2 = prompt("Enter the number : ");
n2 = parseInt(n2);
let res;

if (operator == "+") {
  res = n1 + n2;
} else if (operator == "-") {
  res = n1 - n2;
} else if (operator == "*") {
  res = n1 * n2;
} else {
  res = n1 / n2;
}
console.log(`${n1} ${operator} ${n2} = ${res}`);

Output

Loading

Views: 105

How can we help?

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments