■ typeof 연산자를 사용하는 기본적인 방법을 보여준다.
▶ 예제 코드 (JAVASCRIPT)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
console.log(typeof "" ); // string console.log(typeof 1 ); // number console.log(typeof NaN ); // number console.log(typeof true ); // boolean console.log(typeof undefined ); // undefined console.log(typeof Symbol() ); // symbol console.log(typeof null ); // object console.log(typeof [] ); // object console.log(typeof {} ); // object console.log(typeof new Date() ); // object console.log(typeof /test/gi ); // object console.log(typeof function() { }); // function |