JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
easyJavaScript
What does this log, and why?
code
function a() { console.log('a'); b(); }
function b() { console.log('b'); c(); }
function c() { console.log('c'); }
a();