🚩typeof란? 피연산자의 자료형을 나타내는 문자열을 반환하는 연산자이다. 형식 typeof 피연산자 예시 console.log(typeof 7); // expected output: "number" console.log(typeof 'BTS'); // expected output: "string" console.log(typeof true); // expected output: "boolean" console.log(typeof undeclaredVariable); // expected output: "undefined"