= is used to assign values.
+ is used to add values.
The assignment operator = is used to assign values to JavaScript variables.The arithmetic operator + is used to add values together.
Example
Assign values to variables and add them together:
y=5;
z=2;
x=y+z;
The result of x will be:z=2;
x=y+z;
7
JavaScript Arithmetic Operators
Arithmetic operators are used to perform arithmetic between variables and/or values.Given that y=5, the table below explains the arithmetic operators:
Operator | Description | Example | Result of x | Result of y | |
---|---|---|---|---|---|
+ | Addition | x=y+2 | 7 | 5 | |
- | Subtraction | x=y-2 | 3 | 5 | |
* | Multiplication | x=y*2 | 10 | 5 | |
/ | Division | x=y/2 | 2.5 | 5 | |
% | Modulus (division remainder) | x=y%2 | 1 | 5 | |
++ | Increment | x=++y | 6 | 6 | |
x=y++ | 5 | 6 | |||
-- | Decrement | x=--y | 4 | 4 | |
x=y-- | 5 | 4 |
JavaScript Assignment Operators
Assignment operators are used to assign values to JavaScript variables.
Given that x=10 and y=5, the table below explains the assignment operators:
Operator | Example | Same As | Result | |
---|---|---|---|---|
= | x=y | x=5 | ||
+= | x+=y | x=x+y | x=15 | |
-= | x-=y | x=x-y | x=5 | |
*= | x*=y | x=x*y | x=50 | |
/= | x/=y | x=x/y | x=2 | |
%= | x%=y | x=x%y | x=0 |
No comments: