JavaScript typeof 비교 (1) 썸네일형 리스트형 [JAVASCRIPT]typeof 과 instanceof의 차이점 typeof 피연산자의 데이터 타입을 반환하는 연산자 문법 1 2 typeof variable cs 반환 값 undefined boolean string number object function 예시 1 2 3 4 5 6 7 8 typeof 5; // return 'number' typeof 'haha'; // return 'string' typeof {}; // return 'object' typeof []; // return 'object' typeof function () {}; // return 'function' typeof null; // return 'object' cs instanceof 개체가 특정 클래스의 인스턴스인지 여부를 나타내는 boolean값으로 반환하는 비교연산자 문법 1 Ob.. 이전 1 다음