- 
                Notifications
    
You must be signed in to change notification settings  - Fork 1.2k
 
Open
Description
var foo = function bar() {
  // foo is visible here
  // bar is visible here
  console.log(typeof bar());  // Works here :)  
};
// foo is visible here
// bar is undefined here
It should be like this instead, ( check the console.log )
var foo = function bar() {
  // foo is visible here
  // bar is visible here
  console.log(typeof bar); // Works here :)
};
// foo is visible here
// bar is undefined here
Metadata
Metadata
Assignees
Labels
No labels