programming

Arithmetic Operators

Arithmetic operators are used in mathematical expressions much the same way they are used in algebra.

Here’s a list of them:

  1. Addition (+): Adds the values on either side of the operator.
A = 10, B = 5;
A+B = 15

2. Subtractions (-): Subtracts values on either side of the operator.

A-B = 5

3. Multiplication (*): Multiplies values on either side of the operator.

A*B = 50

4. Division (/): Divides the left-hand operand by the right-hand operand.

A/B = 2

5. Modulus (%): Returns the remainder of a division operation.

A%B = 0
//10 / 5 is 2 with a remainder 0

5. Increment (++): Increases the value of the operand by 1

A++ = 11

6. Decrement (–): Decreases the value of the operand by 1

B-- = 4

Recent Posts

Embracing Flat Design: A Guide to Modern UI Aesthetics

Introduction: In the realm of user interface (UI) design, flat design principles have emerged as…

8 hours ago

How to Run Unit Tests in JavaScript

In software development, ensuring code reliability and correctness is paramount. Moreover, unit testing is a…

1 day ago

When to Choose Node.js Over PHP

Node.js and PHP are both popular server-side options with unique attributes. Knowing when to opt…

2 days ago

How to Create Neumorphism Effect with CSS

Neumorphism design, alternatively termed as "soft UI" or "new skeuomorphism," represents a design trend that…

6 days ago

How to Debug Your JavaScript Code

Debugging JavaScript code can sometimes be challenging, but with the right practices and tools, you…

1 week ago

Service Workers in JavaScript: An In-Depth Guide

Service Workers are one of the core features of modern web applications, offering powerful capabilities…

3 weeks ago