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
- 정보처리기사
- spring boot security
- 프론트엔드
- 수제비
- useState
- React
- 자바스크립트
- 정보처리기사 실기
- Redux
- 스프링부트
- frontend
- VUE
- Node.js
- 백엔드개발자
- 큐넷
- JS
- JWT
- It
- spring
- 웹개발자
- Authentication
- spring boot
- JavaScript
- 리액트
- security
- TypeScript
- TS
- 타입스크립트
- 백엔드
- Front-End
Archives
- Today
- Total
목록intersection type (1)
솔적솔적
type 키워드를 이용해서 타입변수를 생성할 수 있었지만 interface로도 interface 키워드도 변수 생성이 가능합니다. type키워드를 이용한 변수 생성 type person = { name : string , age : number} let 솔 : person - { name : 'park', age : 12} interface키워드를 이용한 변수생성 interface person = {name : string , age : number} let 솔 : person = {name :'park', age : 12} 엥 똑같은데 인터페이스를 왜 써? extends가 가능하기 때문이다. interface person { name :string age : number } interface anima..
Front-end/typesrcipt
2022. 1. 19. 06:29