Operator in javascript are used for compairing values, performing operation,etc. Example: 10+5=15. 10 and 5 are operand and + is operator.
Types of JavaScript Operators
There are five different types of operators in JavaScript .
Arithematic Operator - Arithematic Operator are used to perform arthematic operation on the operands.
Comparison Operators - It compares two Operands.
Bitwise Operators - It perfrom bitwise operation on operands.
Logical Operators - Logical AND, Logical OR, Logical Not.
Assignment Operators-It used to assign values to the operands.