0% found this document useful (0 votes)
7 views1 page

Simple JavaScript Calculator Code

Uploaded by

bcomcait
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

Simple JavaScript Calculator Code

Uploaded by

bcomcait
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

JavaScript: Simple Calculator

A basic JavaScript program for a calculator that adds two numbers.

// JavaScript program for a simple calculator

function addNumbers(a, b) {

return a + b;

// Example usage

let num1 = 5;

let num2 = 7;

[Link]("The sum is: " + addNumbers(num1, num2));

You might also like