Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- nodejs
- javascript
- python
- deep learning
- Backbone.js
- phpredis
- AWS
- NCP
- docker
- React
- nginx
- CentOS
- For
- Redis
- webpack
- php
- 기초 수학
- Switch
- Go
- Redux
- fastapi
- SQL
- 블레이드 템플릿
- rabbitmq
- laravel
- mariadb
- Machine Learning
- linux
- Node
- Babel
Archives
- Today
- Total
728x90
반응형
목록2024/09 (1)
개발일기
Javascript - Promise.all, async await 비동기 작업
자바스크립트에서 비동기 작업을 처리하기 위해 주로 사용되는 방법은 Promise.all과 Async Await다. Promise.allPromise.all은 비동기로 실행할 여러 개의 Promise 객체를 배열에 넣어서 병렬로 실행한다.const promise1 = setTimeout(() => { console.log('Start Promise1')}, 2000) // 2초 후 실행(setTimeout)const promise2 = setTimeout(() => { console.log('Start Promies2')}, 1000) // 1초 후 실행(setTimeout)// Promise.all 배열에 비동기로 실행한 작업들을 추가Promise.all([promise1, promise2])..
Javascript
2024. 9. 18. 20:05
728x90
반응형