1 | In Expressions, elements are glued together with the help of operators. |
2 | Some operators include : |
3 | Numerical -- +, -, /, * ^ |
4 | String -- & Concatenates two strings |
5 | Numerical and String comparisons -- =, <>, >=, >, <, <= |
6 | Logical -- Not, And, Or, Xor. |
7 | Object Comparison -- Is Checks to see |
8 | if the two objects are the same. |