1 개요[ | ]
- JavaScript typeof
JavaScript
Copy
console.log( typeof [] ); // object
console.log( typeof {} ); // object
console.log( typeof 42 ); // number
console.log( typeof "hello" ); // string
console.log( typeof function(){} ); // function
var func = function() {};
console.log( typeof func ); // function
▶ | object |
▶ | object |
▶ | number |
▶ | string |
▶ | function |
▶ | function |
2 같이 보기[ | ]
3 참고[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.