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 |
Tags
- 조영호
- 독후감
- 일상속귀한배움
- nodemailer
- futureself
- UNiQUE
- typescript
- 자청
- 역행자
- 개발자
- PRISMA
- validator
- Object
- AWS
- serverless
- nodejs
- Study
- 세이노의가르침
- Validation
- BOOK
- 객체지향의사실과오해
- 북스터디
- Nestjs
- 퓨처셀프
- 오브젝트
- 클린코드
- OOP
- 스터디
- googleapis
- 부자아빠가난한아빠2
Archives
- Today
- Total
목록dynamic (1)
우당탕탕 우리네 개발생활
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/10i2C/btsF9KcfCVO/YKITjj6CeMjs8QRhKIfUVK/img.png)
여느 때와 같이 개발을 하던 중 다음과 같은 상황에 직면했습니다. const input: { catId: number | null; dogId: number | null; fishId: number | null; counts: number; name: string; } = /**/ const data: { catCounts?: number; catName?: string; dogCounts?: number; dogName?: string; fishCounts?: number; fishName?: string; } = {}; if (input.catId) { data.catCounts = counts; data.catName = name; } else if (input.dogId) { data.dogCou..
tech
2024. 3. 28. 23:58