비동기(Asynchronous)

콜백(Callback) 함수

Promise

Async/Await

async function 함수명() {
	await 비동기처리메서드명();
}