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
- OCR
- AWS
- 정렬
- Python
- 자료구조
- Nest.js
- nestjs
- 게임
- JavaScript
- MySQL
- flask
- class
- Queue
- dfs
- Bull
- Dinosaur
- typeORM
- 공룡게임
- cookie
- mongoose
- nodejs
- Express
- GIT
- Sequelize
- MongoDB
- game
- react
- jest
- TypeScript
Archives
- Today
- Total
목록비동기 (1)
포시코딩
Promise, async/await을 통한 순차실행 - 작성중
function f1() { setTimeout(() => { console.log(1); }, 1000); } function f2() { setTimeout(() => { console.log(2); }, 2000); } function f3() { f2(); f1(); } f3(); // 출력 // 1 // 2 시행착오1 function f1() { setTimeout(() => { console.log(1); }, 1000); } function f2(f1) { setTimeout(() => { console.log(2); }, 2000); f1(); } f2(f1); 시행착오2 function f1() { setTimeout(() => { console.log(1); }, 1000); } fun..
JavaScript
2022. 12. 3. 23:40