
↩️ 들어가기전에 . .
promise :
https://velog.io/@supernova77/Node.js-02-Promise
async & await :
https://velog.io/@supernova77/Node.js-02-async-await

Future <T> : 미래에 T타입으로 변환된다. ex) Future<int> : 미래에 int 타입으로 된다.
Async : Future 객체를 반환하며 , 비동기함수 나타냄
await : 비동기함수 실행 완료 될 때 까지 대기 (Async 있어야 사용 가능)


③번이 꼭 먼저 실행한 다음 ②번이 실행되야 된다면?
- await & async !!

- 상위 메인 함수에도 똑같이
- await & async !!
