Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardNodeJSprocess.nextTick queue orderSingle-choice MCQ

Consider recursive process.nextTick calls. What happens to the event loop, and why is this behavior considered a footgun?

function loop() { process.nextTick(loop); } loop();