j==null will be true, but not because j is null. Instead it's because j is undefined, but the == operator does type coercion. The == considers null and undefined to be equal. The === operator is strict, and doesn't do any coercion. – cliffs of insanityMay 12 '12 at 1:38
No, it has de default value of undefined
But if want to use the !j condition, it will work with the both values (undefined or null)
Note that (j==null) is true, but (j===null) is false... JavaScript have "falsy" values and sometimes unexpected rules to convert values, plus fancy === operator to compare value and type at the same time.
Actually, j == null will evaluate to true, j === null will be false. (But yes, the default value is undefined as j === undefined will be true). – SoWeLieMay 12 '12 at 1:38
so will writing k === null evaluate to true, since variable k doesn't exist? also i assume i can use the opposite, and say "if(j)", and that will evaluate to false, correct? – thisissamiMay 12 '12 at 1:39
@thisissami no, it'll throw a ReferenceError. The tricky thing to get is that undefined is actually a valid value. There are both null and undefined, they are similar but different. – Dagg NabbitMay 12 '12 at 1:40
j==nullwill betrue, but not becausejisnull. Instead it's becausejisundefined, but the==operator does type coercion. The==considersnullandundefinedto be equal. The===operator is strict, and doesn't do any coercion. – cliffs of insanity May 12 '12 at 1:38