Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumNodeJSprocess.nextTick vs setImmediateSingle-choice MCQ

What does `setImmediate(fn, a, b)` do with the extra arguments, and what does it return?

const id = setImmediate((x, y) => console.log(x + y), 2, 3);