Javascript-operators
Javascript support different types of operators. They are: Arithmetic Operators Comparision Operators Logical (or Relational) Operators Assignment Operators Conditional (or ternary) Operators —–>Arithmetic Operators JavaScript supports arithmetic operators . A typical arithmetic operation operates on two numbers. eg: var x=100=50; or var x= a+b;(using variables) Operator Description (+) Addition Add two operands eg:A+B(A=10;B=30 will give… Read More »