Compare two variables to check if they have the same value.
100 is equal to 100Compare two variables to check if they are identical.
The identical operator (===) checks the value and the data type, unlike the equal operator (==) that checks only the value.
100 is identical to 100