If I have the following code:
var abc;
if(!abc){
alert('test');
}
Does "if(!abc)" check to see if the variable is null or does it check
to see if the variable exists at all?
var abc;
if(!abc){
alert('test');
}
Does "if(!abc)" check to see if the variable is null or does it check
to see if the variable exists at all?
Comment