← Back to Master Index

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

SymbolMeaning
&&and
||or
!not
andand (Python/SQL)
oror (Python/SQL)
notnot (Python/SQL)

2) Comparison Operators

SymbolMeaning
===Strict equality
!==Strict inequality
==Equality
<=Less than or equal
>=Greater than or equal

3) Assignment

SymbolMeaning
=Assign
+=Add and assign
-=Subtract and assign
/=Divide and assign
*=Multiply and assign

4) Bitwise

SymbolMeaning
&Bitwise AND
|Bitwise OR
^Bitwise XOR
~Bitwise NOT
>>Right shift
<<Left shift

5) Regex

SymbolMeaning
\dDigit
\wWord character
\sWhitespace
+One or more
*Zero or more
?Zero or one
{n,m}Range quantifier
[...]Character set