JavaScript - OPERATORS - Tutorials

Arthimetic Operators +, -, /, *,%, **

Unary Operators a++, a--, ++a, --a

Assignment Operators =, +=, -=, *=, %=, **=

Comparison Opeators == (equal to), === (equal to type), != (not equal to), !==(not equal to type)

Logical Opeators &&(logical and both must TRUE), ||(or any one is TRUE)

Ternary Opeators - 3 operands works here, condition ? true : false

///////////////////////////////////////////////////// /////////////////////////////////////////////////////