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
- ApexChart
- 검색
- 아이오닉 스크롤 이벤트
- prisma
- angular animation
- 모달
- Oracle LISTAGG 사용 예시
- mysql if
- 앵귤러 모달
- angular button
- scroll
- angular modal
- 스크롤 이벤트
- 앵귤러 애니메이션
- flex-1
- 옵저버블
- formgroup
- modal
- Router
- 스크롤 이벤트 감지
- Angular Router
- 셀렉트박스 커스텀
- 호버
- TAILWIND
- route
- ajax 사용 예시
- summary
- angular route
- Ionic modal
- egov spring ajax 사용 예시
Archives
- Today
- Total
목록typescript & (1)
깜놀하는 해므찌로
typescript literal type / 리터널 타입 / intersection type / 교차 타입 / |, &
// Literal type const userName1 = "Bob"; // 상수 let userName2: string | number = "jane"; // 변수 userName2 = 3; type Job = "police" | "developer" | "doctor"; // 사용자 정의 타입 interface User{ name : string; job : Job; // Job 타입 } let user:User = { name : "이름", job : "police" } // | : Union type interface Student{ name : string | number; grade : 1 | 2 | 3; // 1,2,3 만 입력 가능 } interface Car{ name : "car"; ..
IT
2023. 5. 22. 12:32