자바 스크립트의 Undefined Check..
var undefinedCheck = undefined;
if(typeof undefinedCheck === undefined){
alert("typeof undefinedCheck === undefined");
}
if(typeof undefinedCheck == undefined){
alert("typeof undefinedCheck == undefined");
}
if(typeof undefinedCheck === "undefined"){
alert("typeof undefinedCheck === 'undefined'");
}
if(typeof undefinedCheck == "undefined"){
alert("typeof undefinedCheck == 'undefined'");
}
위의 코드에서 실행 되는건 마지막 두개..
타입 체크 할때 undefined 자체를 객체로 인식해 비교 하는줄 알았는데..
그게 아니라 문자열로 비교를 한다.
'JavaScript' 카테고리의 다른 글
Input의 MaxLength의 한글 문제.. (0) | 2015.02.06 |
---|---|
JQuery에서 SpringMVC로 배열 파라미터를 넘길시 생길수 있는 문제.. (0) | 2015.01.22 |
JavaScript의 replace()를 이용하여 replaceAll()과 같이 사용하기.. (0) | 2014.12.05 |
JavaScript - 함수 (0) | 2013.01.30 |
javaScript 배열 선언..! (0) | 2012.05.23 |