
synchronous/asynchronous의 단어 사용 예시를 검색해보면 synchronous communication에는 화상 채팅이나, 전화, 대면 회의 등이 포함되고, asynchronous communication의 경우에는 이메일, 문자, 트위터 등이 포함되는 것을 볼 수 있다.
Email is a type of asynchronous human communication. A sender sends an email. The recipient reads the email and responds to it (or not) at their convenience, not necessarily right away. All parties can continue to send and receive messages at any time. Emails don't have to be scheduled in a particular sequence. - Asynchronous(MDN)
예를들어
function func1() {
console.log('func1');
func2();
}
function func2() {
setTimeout(function () {
console.log('func2');
}, 0);
func3();
}
function func3() {
console.log('func3');
}
func1();
