You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
It should be like this instead, ( check the console.log )
The text was updated successfully, but these errors were encountered: