123-Essential-JavaScript-Interview-Questions icon indicating copy to clipboard operation
123-Essential-JavaScript-Interview-Questions copied to clipboard

16th Question - bug

Open ChinmayaBisoi opened this issue 2 years ago • 1 comments

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

ChinmayaBisoi avatar May 10 '23 17:05 ChinmayaBisoi

@ganqqwerty P.s. thanks for the great repo, I hope you would take a look into the above issue

ChinmayaBisoi avatar May 10 '23 17:05 ChinmayaBisoi