[자바스크립트] typeof 연산자
* 개요 typeof 연산자는 형식 정보를 문자열로 반환합니다. typeof는 “number”, “string”, “boolean”, “object”, “function”, “undefined”라는 6가지 형식을 반환할 수 있습니다. 선택적인 요소로 typeof 구문에 괄호를 사용할 수도 있습니다. * 용법 if( typeof ‘abc’ == ‘string’ ){…} //괄호 사용 안함 if( typeof(‘abc’) == ‘string’ ){…} //괄호 사용… Read More »