Question 37 of 10037%
37

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

hoisted();
function hoisted() {
    console.log('foo');
};
37/100