본문 바로가기

TypeScript

기초 문법

타입 표기 (Type Annotation)

타입스크립트 코드에서 어떤 변수 또는 값의 타입을 표기하기 위해 타입 표기를 사용한다. 타입 표기는 식별자 또는 값 뒤에 콜론( : )을 붙여 value: type 의 형태로 표기한다.

const areYouCool: boolean = true;
const answer: number = 42;
const typescript: string = "great";
const greetings: string = `
Hello, Readers!
Welcome to TypeScript.
`;
const hasType: Object = {
  TypeScript: true,
  JavaScript: false
};

'TypeScript' 카테고리의 다른 글

함수  (0) 2019.10.30
타입 별칭  (0) 2019.10.30
객체  (0) 2019.10.30
배열과 튜플  (0) 2019.10.30
기본 타입  (0) 2019.10.30