-
typeof로는 object라는 종류 값만 얻을 수 있다, class instance의 경우 class이름을 알고 싶은 경우가 있다.
예제
const collection = client.db("Db1").collection("Tb1"); console.log("db: " + client.db("Db1").constructor.name); console.log("tb: " + collection.constructor.name);
출력
db: Db tb: Collection
'Typescript' 카테고리의 다른 글
구조 분해 할당(destructuring assignment) (0) 2023.01.13 함수의 구조 분해 매개변수(Parameter Destructuring) (0) 2023.01.13 함수 인수 유형과 정의 방식 (0) 2023.01.13 unknow 타입의 특성 (0) 2022.12.28 Equals Operator ( == ) vs Strict Equals Operator ( === ) (0) 2022.12.21 변수 종류 확인 (타입 체크, type check) (0) 2022.12.21 변수 선언 (0) 2022.12.21 변수 종류(타입, type) (0) 2022.12.21