First Type Annotation

Seulyi Yoo·2022년 7월 12일
0

TypeScript

목록 보기
4/42
post-thumbnail
// let a; 타입은 any
// let a: 타입을 지정해줄 수 있음;

let a: number;

a = 'Mark'; // Error!

a = 39;

--------------------

let a: string;

a = 'Mark'; 

a = 39; // Error!

--------------------

function hello (b:number){

}

hello(39);
hello('hello'); // Error!
profile
성장하는 개발자 유슬이 입니다!

0개의 댓글