正文

JavaScript中重新调用当前函数,可以这样操作:`setTimeout(() => function() { /* 当前函数的代码 */ }, 0);` 或使用 `setImmediate()`(在Node.js中)。