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