An operator is a program that can manipulate a value or operand. Operators are used to carrying out particular mathematical and logical operations on operands. To put it another way, an operator controls the operands. Operators are used in JavaScript to compare values, perform arithmetic operations, etc.
Operators for logical comparison (or Relational)
Operators in Arithmetic
Operators for Assigning
Operators that are conditional (or ternary).
An operator is a specific symbol in JavaScript used to execute operations on operands (values and variables). As an example,
5 + 2 + 3;