nextTick — before event loop. setImmediate — in event loop.
1process.nextTick(() => {});2setImmediate(() => {});