Quiz Challenges
58
Question 27 of 58
47%
27
What will gets logged?
console
.
log
(
notHoisted
)
notHoisted
(
)
;
var
notHoisted
=
function
(
)
{
console
.
log
(
'bar'
)
;
}
;
A
undefined TypeError: notHoisted is not a function
B
undefined bar
Submit Answer
Previous
27
/
58
Next