Assignment operators are used to compare between variables and/or values.
Operatiors | Description |
== | Is equal to |
=== | Is identical (is equal to and is of the same type) |
!== | Is not identical |
> | Greater than |
>= | Greater than or equal to |
< | Less than |
<= | Less than or equal to |
Assignment operators are used to compare between variables and/or values.
Operatiors | Description |
&& | and |
|| | or |
! | not |