JavaScript typeof

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 참고[ | ]