Think Throothinkthroo.hashnode.dev·Oct 2, 2024queueMacroTask in React source codeIn this article, we analyze queueMacroTask in React source code. Although, file and function are named as enqueueTask, it is imported as queueMacroTask. Unlike window.queueMicroTask, there is no function such as window.queueMarcoTask. setTimeout is ...DiscussJavaScript
Think Throothinkthroo.hashnode.dev·Oct 1, 2024queueMicroTask in JavaScriptIn this article, we analyze queueMicroTask function in React source codeReact uses queueMicroTask in a file named ReactAct.js. This is a public API, act. act is a test helper to apply pending React updates before making assertions. await act(async ac...DiscussQueueMicroTask