[TypeScript] 타입스크립트 interface 개념/ TypeScript에서의 interface는 뭘까?
목차 1. 타입스크립트에서의 nterface 개념과 기본문법 2. interface의 optional props 3. optional props의 default 값 설정하기 "interface" object shpae (string인지, number인지 등)을 Typescript에게 설명해주는 기능 타입스크립트는 props Types을 사용하여 prop이 있는지 없는지 확인해야하는데요! const User = (a:number, b:number) => a+b; plust(2, 3); //5 plus(2, "3"); // string b로 인해 오류 발생 props Types는 잘못된 코드가 있으면, 브라우저 콘솔에 에러를 띄우는데, 이는 코드 실행 후에만 알 수 있습니다. 따라서, 이미 run 돌리면 사..
2022. 5. 10.