본문 바로가기

Node

async function

async function

  • 변수 = await 프로미스; 인 경우 프로미스가 resolve된 값이 변수에 저장
  • 변수 await 값; 인 경우 그 값이 변수에 저장
async function main(){
    try{
        const result = await promise;
        return result;
    }catch (error){
        console.log(error);
    }
}

main().then((name)=>...)

'Node' 카테고리의 다른 글

MAP과 SET, WEAKMAP, WEAKSET  (0) 2024.01.24
for await(변수 of 프로미스 배열)  (0) 2024.01.24
프로미스  (0) 2024.01.24
클래스  (0) 2024.01.24
구조분해 할당  (1) 2024.01.24