Operators
Assignment Operators
Overview Assignment Operators are of two types. Simple assignment operator, and Compound assignment operator. The simple assignment operator assigns the value of the right operand to the variable (or the field) specified in the left operand. The ...
Relational Operators
Overview Relational operators compare two given values and return a boolean value, most commonly used in conditional statements. The following is a list of Relational Operators:< (Lesser than) Example: (x < y) // True if x is lesser than y, otherwise ...
Logical Operators
Overview Logical operators are typically used with multiple conditions in a criteria. Each condition returns a boolean value, and the logical operators used to connect the conditions determine the overall boolean value of the criteria. There are 3 ...
Arithmetic Operators
Overview Arithmetic operators are used to perform calculations on numerical values, as well as to concatenate two or more string values. The following is a list of Arithmetic Operators:+ (Addition) : To add numerical values and to concatenate string ...
Operators - Overview
An operator, in a programming language, is a symbol that represents an action. It tells the program to perform specific mathematical, relational or logical actions on given values to produce a final result. Operations are usually performed between ...