Both result in "undefined"
... For Example
var a;
typeof blablabl; //"undefined";
typeof a; //"undefined";
What is the default way to check if variable is undefined or if variable hasn't been declared;
var a = a || 3;
Only works if variable already exists in the scope.