Javascript Relational Operators
|
|
| Math Operators | ||
| Operator | Function | |
| - value | Treats the value as a negative number. | |
| v1+v2 | Add value v1 and v2 together, ads strings together. | |
| v1-v2 | Subtracts value v2 from v1. | |
| v1*v2 | Multiplies value v1 and v2. | |
| v1/v2 | Divides v1 by v2. | |
| v1%v2 | Divides v1 by v2; returns floating-point remainder | |
| v1++ | Adds 1 to v1. | |
| v1-- | Subtracts 1 from v1. | |

