본문 바로가기
javascript

async / await

by 슈슈슉민 2023. 9. 8.
function hello(){
	return 'hello';
}

async function helloAsync(){
	return "hello Async";
}

console.log(hello());
console.log(helloAsync().then((res)=>{
	console.log(res);
}));

async function : 비동기 함수를 선언 해줌으로써 반환 값은 Promise로 받는다. 따라서 "hello Async"라는 콘솔을 보기 위해서는 then이나 catch를 사용해야 한다.

'javascript' 카테고리의 다른 글

[NodeJs] 외부패키지 사용해보기  (0) 2023.09.08
[NodeJs] 모듈 사용  (0) 2023.09.08
API  (0) 2023.09.08
promise  (0) 2023.09.07
동기 & 비동기  (0) 2023.09.07