SameQ (===)

WMA link


SameQ[x, y]

x === y

returns True if x and y are structurally identical. Commutative properties apply, so if x === y then y === x.

Any object is the same as itself:

Degenerate cases of SameQ showing off how you can chain ===:

Unlike Equal, SameQ only yields True if x and y have the same type:

The comparison consider just the lowest precision

Notice the extra decimal in the rhs. Because the internal representation,
$0.222`3$ is not equivalent to $0.2222`3$:

15.9546 is the value of $MaxPrecision

Min
TrueQ