DEV Community

Karthick M
Karthick M

Posted on

Operators

Operator is a special symbol used to perform some operations like add, sub, div.. etc..
types od operators:

  1. Assignment operator: = 2.Arithmetic operators: +,-,*,/,%
  2. Unary operators: ++ -> incremental operator -- -> decrement operator no++ -> post increment ++no -> pre increment no-- -> post decrement --no -> pre decrement

4.Equality and relational operators: ==,!=,<,>,<=,>=

  1. Conditional operators: &&,|| && = AND operator || = OR operator Operator: symbol Operand: value

Top comments (0)