Question 22 of 5242%
22

Consider the following code. What will gets logged on the console?

hoisted();
function hoisted() {
    console.log('foo');
};
22/52