//unknown 변수 // 만약에 api로 값을 받았을때 파라미터의 타입이 뭔지 모를경우 강제시킴 let a : unknown; //let b = a + 1; // Object is of type 'unknown' if(typeof a === "number"){ let b = a + 1 } if(typeof a === "string"){ let b = a.toUpperCase } function hello():void { console.log("hello bro"); } function hello2() { console.log("hello bro"); } //never 타입 -> 절대 리턴을 하지 않은 경우 never 타입사용 function hello3():never { throw new Error(..