See that? The console printed false because the colorA variable's string is different than the colorB variable's string.
false
colorA
colorB
If you set colorB to the value "red", true will get printed to the console since "red" is the same as "red".
"red"
true