uniontype

[참고영상] 리터럴(Literal) 변수 선언 시 const, let 사용 둘의 차이는 const는 변하지 않는 값을 선언할 때, let은 변할 수 있는 값을 선언할 때 사용. // Literal Types const userName1 = "Bob"; // 문자열 리터럴 타입 let userName2:string | number = "Charlie"; userName2 = 3; userName1처럼 정해진 string 값을 가진 것을 문자열 리터럴 타입이라고 함. 유니온(Union) // Union Type let userName2:string | number = "Charlie"; userName2 = 3; userName2처럼 타입을 지정해주면 userName2 변수에는 string 타입과 numbe..
딜레이레이
'uniontype' 태그의 글 목록