I was working on some code made by someone else and came across in if statement that looks like this IF($res === true){ do_something();}
This code is called many times and seems to be working. What is it doing?
I know one equals is assignment and two is comparison. What does the three equals sign operator do?