In Javascript, when you declare a variable without assigning a value to it, the Javascript engine by default assigns the value of Undefined to the variable.
A variable is not defined if it is never declared within a given scope.
ONE SOLUTION