I have been programming in PHP for a while but I still dont understand the difference between == and ===. I know that = is assignment. And == is equals to. So what is the pu
It will check if the datatype is the same as well as the value
if ("21" == 21) // true if ("21" === 21) // false