23. What will gets logged?


console.log(notHoisted)

notHoisted();

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