WLJS LogoWLJS Notebook

SameQ

lhs === rhs yields True if the expression lhs is identical to rhs, and False otherwise.

Examples

Test for identical expressions:

{1, 2, 3} === {1, 2, 3}
(* True *)

Symbolic equality vs identity:

x === x
(* True *)
1.0 === 1
(* False *)

Please visit the official Wolfram Language Reference for more details.

On this page