[JS]비동기 프로그래밍
동기 처리 모델 연속물정상적으로 작업 완료 과제는 잇달아 일어나는그리고 그것은 무언가를 하고 다음은 분위기하다 서버로부터 데이터 요청을 받아 화면에 표시하는 태스크가 실행 중이면 서버가 데이터를 요청한 후 응답을 받을 때까지 태스크가 계속됩니다. 블록 (작업 중지)된다 function first() { console.log(‘first’); second(); } function second() { console.log(‘second’); third(); } function third() { console.log(‘third’); } first(); 비동기 처리 … Read more