There are three equality operators: ==, ===, and isequal. (The last is not really an operator, but it is a function and all operators are functions.)
When to use ==
== is value equality. It returns true when two objects represent, in their present state, the same value.
For instance, it is obviou...