a = 1; b = undefined; alert( !!a ); alert( !!b );
a = 1; b = undefined; alert( new Boolean(a) ); alert( new Boolean(b) );