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