티스토리 뷰
728x90
Playwright를 사용하기 위해 짧게나마 notion에 정리내용을 블로그에 옮김
async
- 함수를 비동기 실행하도록 해줌 return promise
await
- 비동기 함수 앞에 붙여 호출할 경우 비동기 함수를 동기 형태로 사용할 수 있음
- await 은 뒤에 있는 함수의 결과를 대기함
//일반 함수
function hello() {
return "hello";
}
//async를 붙이면 promise를 반환하는 비동기 객체가 됨
async function helloAsync() {
return "hello async";
}
console.log(hello());
console.log(helloAsync()); //return promise
helloAsync().then((res) => {
console.log(res); //then을 이용해 실제 async 함수의 결과 출력
});
function delay(ms) {
return new Promise((resolve) => {
setTimeout(resolve, ms);
});
}
async function helloAsync() {
return delay(3000).then(() => {
return "hello async";
});
}
helloAsync().then((res) => {
console.log(res);
});
위 코드에 await을 적용할 경우 아래 처럼 사용할 수 있음
function delay(ms) {
return new Promise((resolve) => {
setTimeout(resolve, ms);
});
}
async function helloAsync() {
await delay(3000);
return "hello async";
}
helloAsync().then((res) => {
console.log(res);
});
function delay(ms) {
return new Promise((resolve) => {
setTimeout(resolve, ms);
});
}
async function helloAsync() {
await delay(3000);
return "hello async";
}
async function main() {
const res = await helloAsync();
console.log(res);
}
main();
728x90
'헉!! > javascript' 카테고리의 다른 글
[React] State (0) | 2024.07.21 |
---|---|
[Javascript] Truthy & Falsy (0) | 2024.07.20 |
[javascript] bit.ly 짧은주소 생성시 http와 https 프로토콜에 따른 api 호출주소 (0) | 2014.09.12 |
[jQuery] 접속 클라이언트의 Agent를 쉽게 확인할 수 있는 플러그인 (0) | 2014.08.09 |
[javascript] 크롬에서 window.close 가 안될때 (1) | 2014.01.06 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- tomcat
- 아이폰
- 티스토리챌린지
- Object C
- Java
- MySQL
- 오브젝티브 C
- 아이폰 개발
- 오블완
- iOS 개발
- Objective C
- 제이쿼리
- Programming
- IT
- Objective-C
- SQL
- jQuery
- Spring Framework
- 자바스크립트
- iBATIS
- JavaScript
- iPhone
- 아이폰 어플리케이션
- oracle
- zero
- 오브젝트 C
- MAC OSX 10.7
- Spring
- JSP
- 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함