When is addition Not Addition?

In programming, you will utilize math a lot…not complex math, but math none the less. So make sure you know addition, subtraction, division and multiplication. In this post, I want to address addition.

Of course, when you add two numbers together, you utilize the plus (+) symbol. With this particular operator, you have to be aware of the data types you are adding together. The plus (+) operator is used not only for addition, but also for concatenation, which is connecting two items together and making them one.

Let’s look at some examples.

First, plain addition…

[code lang=”js”]
// Declare two number variables and a total variable
var firstNum = 1;
var secondNum = 2;
var total = 0;
// Add two variables together and store them in the total
total = firstNum + secondNum;
// Output total to screen
document.write(total);
[/code]

The aforementioned code would result in the number ‘3’ being output to the screen.

Now, let’s look at concatenation…

[code lang=”js”]
// declare to string variables and a combined variable
var firstString = "Java";
var secondString = "Script";
var combinedString = "";
// Concatenate the two variables into one and store it in the combined variable
combinedString = firstString + secondString;
// Output code to the screen
document.write(CombinedString);
[/code]

The aforementioned could would result in the word “JavaScript” being output to the screen.

So why is this important to keep in mind? Well, sometimes a number is not a number. For example…

[code lang=”js”]
// Declare a variable with numbered value strings
var testVar = "1" + "2";
// Output the variable to the screen
document.write(testVar);
[/code]

The aforementioned code would result in the text number of “12” being output to the screen.

Now, sometimes, depending on the language, which I am using JavaScript, the language interpreter/compiler will attempt to make type adjustments on the fly. So depending on how you use the numbered string, it could result in a correct calculation. My recommendation is to always test to ensure you are using a number. For example, in JavaScript whenever you prompt the user for information, it always comes through as a string, even if they put in a number. You can use the Number() function to it from a string to an integer.

Happy Coding!

Clay Hess

More To Explore

Digital interface displaying code aligned with golden ratio in a dark futuristic room with glowing screens at a tech hub
Code

Unleashing Creativity with the Canvas API

The Canvas API stands as one of the web’s most powerful tools for creating dynamic, interactive graphics. Unlike SVG, Canvas operates at the pixel level, making it ideal for games, data visualizations, and real-time graphics processing. With a simple HTML element and JavaScript, developers can create everything from basic shapes to complex animations that push the boundaries of what’s possible in the browser.

Developer working with styles at a coffeehouse with code swirling around him
Code

The CSS Object Model (CSSOM): A Practical Guide

If you’ve ever used JavaScript to read or modify styles in the browser, you’ve touched the CSS Object Model—often without realizing it. The CSSOM sits

Share This Post

small_c_popup.png

Need help?

Let's have a chat...


Login

Jump Back In!

Here at Webolution Designs, we love to learn. This includes sharing things we have learned with you. 

Register

Begin Your Learning Journey Today!

Come back inside to continue your learning journey.