[jQuery] hasOwnProperty
사용방법 : Object.hasOwnProperty(key)return 값 : true, false 내가 선언해놓은 Object에 Key 값이 있을경우 true, 없을 경우 false 를 반환한다예를들어 다음과 같다 var obj = { 1 : ['apple', 'lemon', 'pear'], 2 : ['red', 'yellow'], 3 : ['a', 'b', 'c'] }; obj.hasOwnProperty(1); //true obj.hasOwnProperty('a'); //false 참고사이트 : http://stackoverflow.com/questions/679915/how-do-i-test-for-an-empty-javascript-object