js> a = {} [object Object] js> b = {} [object Object] js> a == b false
js> x = null null js> y = undefined js> x == y true js> x === y false
js> var _ js> _ === undefined true