Question 26 of 5845%
26

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

hoisted();
function hoisted() {
    console.log('foo');
};
26/58