if_Comparison_Operators_Equal_identical

The == Equal Operator

Compare two variables to check if they have the same value.

100 is equal to 100

The === identical Operator

Compare 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