Typescript 기초
Typescript는 JavaScript에 정적 타입 시스템(static type system) 을 추가한 프로그래밍 언어로 , JavaScript의 확장된 버전입니다. TypeScript는 개발자에게 코드 작성 중에 더 많은 안전성과 가독성을 제공하며, 대규모 프로젝트에서의 유지보수를 향상 시킬 수 있습니다. 타입 계층도 기본 타입 (Primitive type): string,number, boolean, symbol, enum, 문자열 리터 객체 타입 : Array, tuple, class , interface, function, constructor 기타: union, intersection 1. 변수 선언 let variableName : dataType = value; ex) let messag..