변수
-
아이템 20- 다른 타입에는 다른 변수 사용하기타입스크립트 2023. 3. 14. 15:35
타입스크립트에서는 변수에 값을 재할당할 때, 변수를 초기화할 때 지정한 타입과 다른 타입의 값을 할당하면 오류가 발생합니다. function fetchProduct(id: string) { /* ... */ } function fetchProductBySerialNumber(id: number) { /* ... */ } let id = "12-34-56"; fetchProduct(id); id = 123456; // '123456' is not assignable to type 'string'. fetchProductBySerialNumber(id); // ~~ Argument of type 'string' is not assignable to // parame..