Welcome! Today, we will dive into the universe of JavaScript arithmetic and logical operations. Just like in math, arithmetic operations help us conduct simple calculations. Logical operations, on the other hand, allow us to evaluate conditions and make decisions. They're like controllers in a video game, deciding your character's next move based on current conditions.
So, if you were in a candy store with only $10
to spend and each candy cost $2
, what would you do? You'd likely perform a division operation to find out how many candies you could buy. But what if you wanted to buy ice cream ($4
) and chips ($3
) too with your $10
? That's where logical operations come to the fore, helping you evaluate the right decision. Let's dive in!
Arithmetic operations are pretty straightforward in JavaScript, just as they are in math. We use +
for addition, -
for subtraction, *
for multiplication, /
for division, %
for getting the remainder of the division, and finally, **
for power operator.
As you can see above, the operators are placed between the numbers to conduct the calculations.
You might wonder - what about integer division? If I have $10
and I would like to know how many $3
candies I can buy for it, how do I find out the answer? Well, all numbers in JavaScript are floating point, but there is a way to find the integer part of the number:
So, in fact, we just apply Math.floor
to retrieve the integer part (3
) from the number 3.33333
, rounding the number.
While arithmetic operations revolve around numeric calculations, logical operations deal with conditions. They return a boolean value: true
or false
. JavaScript uses AND (&&
), OR (||
), and NOT (!
) for logical operations.
Here, we used the actual boolean values — true
and false
— to illustrate the basic workings of logical operators. In real life, however, these true
and false
will likely be some expressions, e.g., (a > 3) && (a < 5)
.
Applying operations to raw numbers is fun, but calculators can do the same! However, the most important feature of JavaScript is that you can operate with variables and apply all the above operations to variables as well. Here are some examples:
As you can see, we first calculated the total price to purchase 2 apples, and then decided to buy 3 more oranges - it was as simple as updating the existing totalPrice
variable, adding the price of 3 oranges to it. Note how we used the +=
operator here - it's basically just a short form of totalPrice = totalPrice + oranges * orangesPrice
, which makes it very effective. You can use other operators like -=
, *=
, and /=
the same way.
Kudos! You've become proficient in handling arithmetic and logical operations in JavaScript. Now, let's move into some practical exercises. Applying what you've learned in real scenarios will consolidate your knowledge and deepen your appreciation for JavaScript programming! Let's go!
