Important Notice:

Course Content
Switch Statement
0/1
break and continue Statements
0/3
Basic Form Validation in JavaScript
0/1
JavaScript & Angular JS (Chapter- 6) M2-R5.1
About Lesson

Arithmetic Operators:-

                Operands के बीच में mathematical operation करने के लिए arithmetic operators’ का इस्तेमाल होता है|

Operator

Meaning

Example

Result

+

Addition

20+10

30

Subtraction

20-10

10

*

Multiplication

20*10

200

/

Division

20/10

2

%

Modulus

20%3

2

**

Exponential

2**3

8

 

Arithmetic Operators:-

            Arithmetic operators are used to perform mathematical operations between operands.

Operator

Meaning

Example

Result

+

Addition

20+10

30

Subtraction

20-10

10

*

Multiplication

20*10

200

/

Division

20/10

2

%

Modulus

20%3

2

**

Exponential

2**3

8

error: Content is protected !!