JavaScript typeof

1 개요[ | ]

JavaScript typeof
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

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}