WLJS LogoWLJS Notebook

Equal

lhs == rhs returns True if lhs and rhs are identical.

Examples

Numeric comparison:

5 == 5
(* True *)

3 == 4
(* False *)

Symbolic:

x == x
(* True *)

Please visit the official Wolfram Language Reference for more details.

On this page