What is the difference between == and ===in
Category: Php
-
== → Checks only value, not data type.
-
=== → Checks value and data type both.
5 == "5"; // true
5 === "5"; // false
Category: Php
== → Checks only value, not data type.
=== → Checks value and data type both.
5 == "5"; // true
5 === "5"; // false