function isEmpty(object) { return JSON.stringify(object) == "{}"; } var obj1 = {}; var obj2 = { x: 1 }; alert([ isEmpty(obj1), isEmpty(obj2) ]);