var readItem = new Array();
function updateItemCount() {
var inchid = document.neouserForm.chid.value;
if (readItem.length == 0 && itemCountChannel[inchid] !=undefined) {
document.getElementById("itemCount_channel_"+inchid).innerHTML = itemCountChannel[inchid];
} else {
****
}
}
}
function updateItemCount() {
var inchid = document.neouserForm.chid.value;
if (readItem.length == 0 && itemCountChannel[inchid] !=undefined) {
document.getElementById("itemCount_channel_"+inchid).innerHTML = itemCountChannel[inchid];
} else {
****
}
}
}
본 스크립트에서 의도하는 바는 undefined에 대해서입니다.
undefined은 문자열이 아니랍니다. 그래서 'undefined' 나 "undefined" 로 비교하게 되면
위에 조건절로 본다면 true를 return 하게 됩니다.
꼭! undefined 은 아무런 코멘트 없이 사용하시기 바랍니다.