자바스크립트에서 toString을 사용하면 객체타입까지 자세히 나옴
null 의 경우 typeof null 이면 object
function typeChk(v){
return (function(v){
return Object.prototype.toString.call(v);
}(v)).replace(/\[|\]/g,"").split(" ")[1].toLowerCase();
}
alert(typeChk('1'));
댓글 없음:
댓글 쓰기