typeof와 instanceof의 차이점
javascript typeof instanceof
자바스크립트의 "typeof"와 "instanceof"연산자의 차이점
- 자바스크립트엔
typeof
연산자와instanceof
연산자가 있다. 두연산자는 비슷해 보이지만 다른 기능을 한다.
typeof 연산자
typeof
연산자는 해당 변수 또는 값의 원시primitive타입을 반환하는 연산자이다.typeof
연산자의 반환값들은 다음과 같다:- "number"
- "string"
- "object"
- "boolean"
- "bigint"
- "function"
- "undefined"
- "symbol"
instanceof 연산자
instanceof
연산자는 해당변수가 특정prototype
생성자에 의해 생성이 되었는지 확인하는 연산자이다.