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

Code

Exploring the Broadcast Channel API: Inter-Tab Communication

Intercommunication between different contexts (like tabs, iframes or workers) of the same origin has often been a challenge. With the Broadcast Channel API, developers now have a powerful tool to easily communicate between browsing contexts. In this blog post, we’ll dive deep into the capabilities of the Broadcast Channel API, exploring its features, use cases, and how it can be effectively implemented in your projects.

computer, laptop, work place-2982270.jpg
Code

Unlocking Wireless Communication: A Dive into the Bluetooth API

Wireless communication has become an integral part of our daily lives, and Bluetooth technology is at the forefront of this revolution, enabling devices to exchange data over short distances and creating a world more interconnected than ever before. At the heart of this technology lies the Bluetooth Application Programming Interface (API), a powerful tool for developers looking to harness the capabilities of Bluetooth in their applications. In this blog post, we’ll explore what the Bluetooth API is, how it works, and the possibilities it opens up for innovation in wireless communication.

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.