Operators An operator performs some operation on single or multiple operands (data value) and produces a result. For example 1 + 2, where + sign is an operator and 1 is left operand and 2 is right operand. + operator adds two numeric values and produces a result which is 3 in this case. Syntax: < Left operand > operator < right operand > < Left operand > operator Example 1: Arithmetic Operators Arithmetic operators are used to perform mathematical operations between numeric operands. Source code: var x = 10, y = 10 console.log("Addition Operator",x + y) console.log("Subtraction Operator",x - y) console.log("Multiplication Operator",x * y) console.log("Division Operator",x / y) console.log("Modulus Operator",x % y) console.log("Increment Operator",x ++ ) console.log("Decrement Operator",y -- ) Output: Addition Operator 20 Subtraction Operator 0 Mult...