typeof
자바스크립트는 내부적으로 자료형이 정해진다
타입에 신경을 쓰지 않아도 되지만 알아내야 할 경우가 있다
alert(typeof ('String')); => string (문자열)
alert(typeof (111)); => number (숫자)
alert(typeof (true));=> boolean (불리언)
alert(typeof (function(){}));=> function (함수)
alert(typeof ({})); => object (객체)
alert(typeof (AAA));=> undefined
중괄호만 하면 객체다
AAA라는 것은 없기 때문에 undefined 정의 되지 않는것도 타입으로 출력이 된다
getTime() (0) | 2012.12.14 |
---|---|
숫자 유효성검사 isNaN 함수 (0) | 2012.08.08 |
location.href & location.replace (0) | 2012.05.22 |
tmp:expression (IE6에서 투명PNG 이미지 사용하기) (0) | 2012.05.09 |
window.open() & window.close() (0) | 2012.04.23 |
댓글 영역