Question 38 of 10038%
38

What will gets logged?


console.log(notHoisted)

notHoisted();

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