Question:What is the difference between “==” and “===” operator?
Answer
1. Both are comparison operators but
2. "==" test for equally operator compares its operands with only value ignoring the datatype.
3. Whereas "===" test for strict equally operator compares its operands with datatypes and the value.
+ Report
What is the difference between “==” and “===” operator?