See that? Since the colorA
variable and the colorB
variable both are set to "red"
, the equality operator ===
returns true
.
Set colorA
to "red"
by assembling var colorA = "red";
. Then compare the variables by assembling colorA === colorB
.