//빈 오브젝트 체크 (empty object check)
var obj = {}; //맴버가 없는 객체 리터럴
JSON.stringify(obj) == '{}'; // true
Object.keys(obj).length === 0; // true
//jQuery 빈 오브젝트 체크
jQuery.isEmptyObject(obj) // true


반응형
Posted by 힘없는염소