Turn Your Vehicle Into a Smart Earning Asset

While you’re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

πŸš— You set the rental price
πŸ” Secure bookings with verified renters
πŸ“ Track your vehicle with GPS integration
πŸ’° Start earning within 48 hours

Join as a Partner Today

It’s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

Arithmetic Operators in JavaScript.

There are 7 operations can be done in Arithmetic Operators. These are

1 . Addition ( + ) :- This operation gives you the Added value. See the below example.
var a = 5 ;
var b = 3 ;
var c = a + b ;
document.write(b);

OUTPUT :- 8

2 . Subtraction ( ) :- This Operation gives you the Subtracted value. See the Below example.

var a = 9 ;
var b = 6 ;
var c = a b ;
document.write(b);

OUTPUT :- 3

3 . Multiplication ( * ) :- This operation gives you the Multiplied value. See the below example.
var a = 7 ;
var b = 5 ;
var c = a * b ;
document.write(b);

OUTPUT :- 35

4 . Division ( / ) :- This operation gives you the Divided / Quotient value. See the below example.
var a = 55 ;
var b = 5 ;
var c = a / b ;
document.write(b);

OUTPUT :- 11

5 . Modulus Operator ( % ) :- This operation gives you the Remainder value. See the below example.
var a = 25 ;
var b = 6 ;
var c = a / b ;
document.write(b);

OUTPUT :- 1

6 . Increment ( ++ ) :- This operation gives you the 1 incremented value. See the below example.
var a = 25 ;
a++;
document.write(a);

OUTPUT :- 26

7 . Decrement ( – – ) :- This operation gives you the 1 Decremented value. See the below example.
var a = 12 ;
a–;
document.write(a);

OUTPUT :- 11

Video Reference

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.