변수값의 undefined 까지 검사하는 isEmpty(), isNotEmpty() 함수 구현. 엄청 유용하다!common.isEmpty() 로 사용var common = {isNotEmpty : function(_str){obj = String(_str);if(obj == null || obj == undefined || obj == 'null' || obj == 'undefined' || obj == '' ) return false;else return true;},isEmpty : function(_str){return !common.isNotEmpty(_str);}}