var Foo = function Bar() {
               return 7;
    };
    typeof Bar();
// Uncaught ReferenceError: Bar is not defined
    var Foo = function Bar() {
               return 7;
    };
    typeof Bar();
// Uncaught ReferenceError: Bar is not defined
