Event Loops Immediate Calls #JS 빠른 노트.
2711 단어 nodebeginnersreactjavascript
아래 시퀀스를 기억하십시오.
1) process.nextTick();
process.nextTick(functionBlockToExecute.); //Function here will be called first no matter it's place where it is declared but only thing is matter that it should be declared along with below other functions than it will execute first
2) 약속 => 해결.
new Promise((resolve, reject) => {
resolve('bar'); // Promise resolution will be second in stack to be callled.
});
3) 약속 => 그럼.
new Promise((resolve, reject) => {
resolve('bar');
}).then((resolve) => {
console.log(resolve);
process.nextTick(zoo); //Here when a promise resiolved then will be called.
});
4) setImmediate(함수 호출)
setImmediate(baz); //However setImmediate execute as soon as possible it still executed after above 3 scenarios.
무엇보다도 즉각적인 호출은 여러 개의 즉시 함수 호출로 작업할 때 서로 비교된다는 점을 기억하십시오.
Reference
이 문제에 관하여(Event Loops Immediate Calls #JS 빠른 노트.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ajaybaraiya6/event-loops-immediate-calls-js-quick-notes-598p텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)