# Typescript의 기본 타입

타입스크립트의 기본 타입에는 크게 12가지가 있다.

# String (문자형)

let str: string = 'hi';

# Number (숫자형)

let num: number = 10;

# Boolean (논리형)