Please enable JavaScript.
Coggle requires JavaScript to display documents.
operators - Coggle Diagram
operators
Assignment
**=
*=
+=
-=
/=
%=
Arithmetic
-, +,*,/,%,
increment ++
exponentiation **
decrement --
logical
&&
returns true if both of openrands is true
||
returns true if one of the openrands is true
=!
Falsy values
undefind,null,0,'',NaN
comparison
relational
,>=
<
,>
<=
equality
===
strict equality check the both value and type
!==
==
lose equality only check the values
bitwise