OPERATORS
MATHEMATICAL OPERATORS
Addition
Subraction
Multiplication
Division
Modulus
Exponentiation
Math.sqrt()
Math.round()
Math.ceil()
Math.floor()
Math.abs()
Math.min();
Math.max();
a++ , ++a, b--, --b
.toFixed() output String
ASSIGNMENT OPERATORS
X+ = Y ==> X = X+ Y
LOGICAL OPERATORS
AND &&
OR ||
NOT !
TERNARY OPERATOR
(T/F ? T :F )
COMPARISON OPERATOR
For same data type = =
For different data type = = =
CONCATENATION
addition of Number and String
Comments
Post a Comment