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 | 31 |
Tags
- nodejs
- flask
- class
- MongoDB
- OCR
- 공룡게임
- nestjs
- game
- Sequelize
- Dinosaur
- Queue
- GIT
- Nest.js
- react
- jest
- 자료구조
- MySQL
- Express
- dfs
- 정렬
- 게임
- cookie
- AWS
- Bull
- TypeScript
- typeORM
- Python
- JavaScript
- mongoose
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