In this tutorials will teach how to make a calculator in Node Js using Arrow Function step by step.
const main =(operator,num1,num2) => { if(operator == "+") { const data = add(num1,num2); console.log(data) } else if(operator == "-") { const data = subtract(num1,num2); console.log(data) } else if(operator == "*") { const data = multiply(num1,num2); console.log(data) } else if(operator == "/") { const data = divi(num1, num2); console.log(data) } else { console.log("There is Problem") } }; const add = (num1,num2) => { return num1 + num2; } const subtract = (num1,num2) => { return num1 - num2; } const multiply = (num1,num2) => { return num1 * num2; } const divi = (num1,num2) => { return num1 / num2; } main("+", 2,6); main("-", 8,6); main("*", 2,4); main("/", 6,2);
Introduction to Grocery Inventory Apps Managing grocery inventory can be a daunting task, but with…
This article explain how to make a Fish Inventory Management App in Angular.this app explain…
Introduction to Fish Inventory Management In the aquaculture industry, managing fish inventory is crucial for…
Introduction to Java GUI CRUD Java is a powerful programming language widely used for building…
Introduction to Login Form Design Designing an effective and beautiful login form is crucial for…
Introduction In today creating a responsive login form is essential for providing a seamless user…