== (negated: !=)

When using two equals signs for JavaScript equality testing, some funky conversions take place.

=== (negated: !==)

When using three equals signs for JavaScript equality testing, everything is as is. Nothing gets converted before being evaluated.

A standard IF statement. If(value) {/*- green -*/} else { /*- white -*/ }

Note: This row does not match up with any of the rows in the other table.

Moral of the story:

Use three equals unless you fully understand the conversions that take place for two-equals.