적당한 번역을 찾을 수가 없다.
형 변환 과는 다르다.
컴파일러에게 '타입이 이것이다.' 라고 컴파일러에게 알려주는 것을 의미한다.
문법적으로는 두가지 방법이 있다.
const someValue: any = "this is a string"; const strLength: number = (someValue as string).length;