Question 23 of 5244%
23

What will gets logged?


console.log(notHoisted)

notHoisted();

var notHoisted = function() {
  console.log('bar');
};
23/52