asynchronous code, AJAX, API

Juyeon Lee·2022년 3월 2일
0

synchornous code

asynchornous code

not occuring at the same time
여기 예시에서는call back function이 있으나
call back function이 있다고 무조건 asynchronous code인건 아니다.
이와 마찬가지로 addEventListener도 이게 있다고 무조건
asynchronous code인건 아니다..
정리 ) 내가 이해한걸로는 asynchornous code는 시간이 걸리는 코드가
background에서 loading이 되는데 이게 loading되는 시간동안
다른 코드가 작동되기를 기다리는게 아니라 순서대로 다 작동되다가
로딩이 끝나면 저 그림에서 노란색박스로 실행이되는것.

asynchoronous의 가장 큰 usecase가 바로 ajax

API

synchronous=>line by line

asynchronous => block of code running in the background without blocking the current thread of execution

0개의 댓글