Programming Operators — Complete Index
Browse operators from JS, Python, C, Java, Rust, plus regex and bitwise symbols. A comprehensive reference for developers.
1) Logical Operators
| Symbol | Meaning |
|---|---|
| && | and |
| || | or |
| ! | not |
| and | and (Python/SQL) |
| or | or (Python/SQL) |
| not | not (Python/SQL) |
2) Comparison Operators
| Symbol | Meaning |
|---|---|
| === | Strict equality |
| !== | Strict inequality |
| == | Equality |
| <= | Less than or equal |
| >= | Greater than or equal |
3) Assignment
| Symbol | Meaning |
|---|---|
| = | Assign |
| += | Add and assign |
| -= | Subtract and assign |
| /= | Divide and assign |
| *= | Multiply and assign |
4) Bitwise
| Symbol | Meaning |
|---|---|
| & | Bitwise AND |
| | | Bitwise OR |
| ^ | Bitwise XOR |
| ~ | Bitwise NOT |
| >> | Right shift |
| << | Left shift |
5) Regex
| Symbol | Meaning |
|---|---|
| \d | Digit |
| \w | Word character |
| \s | Whitespace |
| + | One or more |
| * | Zero or more |
| ? | Zero or one |
| {n,m} | Range quantifier |
| [...] | Character set |