After an AJAX request, sometimes my application may return an empty object, like:

var a = ({});

How can I check whether that's the case?

link|improve this question
Do you use JSON.js script? Or any other JSON library. Then you can use JSON.encode() function to convert var to string and then test it. – Thevs Mar 25 '09 at 13:50
feedback

18 Answers

up vote 63 down vote accepted

For those of you who have the same problem but uses jQuery, you can use jQuery.isEmptyObject.

link|improve this answer
3  
HEY! I just spent a few hours debugging IE 8 issues only to find that it was jQuery.isEmptyObject that was causing the problem. It returns true if the object is empty. – MFD3000 Aug 17 '11 at 19:03
@MFD3000: Could you explain in detail what you did? Did you feed jQuery.isEmptyObject() with a string? In that case have a look at bugs.jquery.com/ticket/7413 and api.jquery.com/jQuery.isEmptyObject. – Erik Töyrä Sep 16 '11 at 20:13
I always click in the first Google result... after a few minutes reading through forum threads I give up and search SO... and of course the first answer is spot-on. Thank you. – Naoise Golden Apr 2 at 15:08
feedback

There's no easy way to do this. You'll have to loop over the properties explicitly:

function isEmpty(obj) {
    for(var prop in obj) {
        if(obj.hasOwnProperty(prop))
            return false;
    }

    return true;
}
link|improve this answer
I guess this is the correct answer, though it doesn't look good. I'll try to modify my application's response and see how that goes. Thanks! – falmp Mar 25 '09 at 15:44
6  
This works fine, or more simply: function isEmpty(object) { for(var i in object) { return true; } return false; } – Nicholas Kreidberg Mar 24 '10 at 23:23
2  
Shouldnt true and false be reversed in this function? – namtax May 5 '10 at 13:46
@namtax: no - the function is named isEmpty(), so it should return false if it has a property – Christoph May 6 '10 at 16:31
3  
empty object will extend the default Object class but if the object prototype is modified your simplified function will fail consider: Object.prototype.a='hi'; var obj={}; alert(obj.a); // outputs "hi" isEmpty(obj) // returns false – venimus Apr 8 '11 at 14:38
show 1 more comment
feedback
var isEmpty = function(obj) {
  return Object.keys(obj).length === 0;
}
link|improve this answer
This is by far the cleanest answer. Loading an entire library per the ticked 'just use JQuery' answer isn't necessary just to check whether an object is empty. – nailer Mar 2 at 11:10
2  
Object.keys was only added in ECMAScript 5/JavaScript 1.8.5 and is thus not available in various mainstream browsers. You can get the details including code to add it to the Object prototype where missing here: developer.mozilla.org/en/JavaScript/Reference/Global_Objects/… – Thomas David Baker Mar 16 at 12:47
feedback

1) Just a workaround. Can your server generate some special property in case of no data? For example:

var a = {empty:true};

Then you can easily check it in your AJAX callback code.

2) Another way to check it:

if (a.toSource() === "({})")  // then `a` is empty

EDIT: If you use any JSON library (f.e. JSON.js) then you may try JSON.encode() function and test the result against empty value string.

link|improve this answer
1  
toSource() is non-standard and doesn't work in IE or Opera (and potentially other browsers I didn't check) – Christoph Mar 25 '09 at 12:21
This is standard in ECMA-262. There are non-standard browsers though. – Thevs Mar 25 '09 at 20:46
1  
@Thevs: perhaps you have a different copy of the current version of ECMA-262, but mine does not list a toSource property in section 15.2.4; according to MDC, it was introduced in JS1.3 (i.e. Netscape Navigator 4.06), but it's NOT in ECMA-262, 3rd edition! – Christoph Mar 25 '09 at 22:47
@Christoph: How do you think 3 other browsers would implement the same 'non-standard' feature if that wouldn't be a standard? :) – Thevs Mar 26 '09 at 9:20
1  
@Thevs: well, at least 2 important browser vendors didn't implement it, so it's hardly a de-facto-standard, and as it's not in ECMA-262, it's not a real one either... – Christoph Mar 26 '09 at 9:34
show 3 more comments
feedback

You can use Underscore.js.

_.isEmpty({}); // true
link|improve this answer
feedback

In addition to Thevs answer:

var o = {};
alert($.toJSON(o)=='{}'); // true

var o = {a:1};
alert($.toJSON(o)=='{}'); // false

it's jquery + jquery.json

link|improve this answer
feedback

jQuery have special function isEmptyObject() for this case:

jQuery.isEmptyObject({}) // true
jQuery.isEmptyObject({ foo: "bar" }) // false

Read more on http://api.jquery.com/jQuery.isEmptyObject/

link|improve this answer
It is available in 1.4 – Shuaib Nawaz Aug 13 '11 at 0:34
feedback

My take:

function isEmpty(obj) {
    return !Object.keys(obj).length > 0;
}

var a = {a:1, b:2}
var b = {}

console.log(isEmpty(a)); // false
console.log(isEmpty(b)); // true

Just, I don't think all browsers implement Object.keys() currently.

link|improve this answer
feedback

Caveat! Beware of JSON's limitiations.

javascript:
  obj={  f:function(){}  };
  alert( "Beware!! obj is NOT empty!\n\nobj = {  f:function(){}  }" + 
               "\n\nJSON.stringify( obj )\n\nreturns\n\n" +
                        JSON.stringify( obj ) );

displays

    Beware!! obj is NOT empty!

    obj = {  f:function(){}  }

    JSON.stringify( obj )

    returns

    {}
link|improve this answer
feedback

Go with the jQuery.isEmptyObject.

But if you don't have jQuery and want a quick check I found == '' works for checking empty objects as well.

if (myObject == '') {
    alert('this object is empty');
}
link|improve this answer
feedback
function isEmpty(obj) {
  for(var i in obj) { return false; }
  return true;
}
link|improve this answer
2  
That'll report also true, when, for instance, a JavaScript library extends Object with a method through the prototype chain, because that's enumerable and the for in statement loops through enumerable properties. – Török Gábor Apr 24 '09 at 13:20
feedback

I have an easy(but not generic) solution for this scenario :

if you know a specific property name for your object , then you can easily check if that property exists. This way you would know if that object is empty or not , and you wouldn't need to traverse all the properties or use a library.

Let me give an example : there is an object that , if its not empty, must have a property named "myProperty". Then you can check it like :

if(myObject['myProperty']){
alert("NOT EMPTY");
}else{
    alert("EMPTY")
}

this is not a generic solution but it's been doing all i need actually, as most times i know what to expect in an object that i'm performing an empty check.

link|improve this answer
feedback

Assume you get the result as:

var results;
//then 
if(results.lenght){
//loop
}
link|improve this answer
feedback

A version adding isEmpty() to the object prototype:

Object.prototype.isEmpty = function() {
    for(var i in this) 
        return true;
    return false;
}
var obj = {};
if (obj.isEmpty) console.log('empty');
link|improve this answer
1  
Without Object.hasOwnProperty, this function will always return true (the function is called isEmpty, but returns true when it's not empty, by the way...). Also, the function will not invoke itself automatically. Add () after obj.isEmpty. – Rob W May 7 at 14:01
feedback

There is a simple way if you are on a newer browser. Object.keys(obj).length == 0

link|improve this answer
feedback

you must be binding this json to some dom element inspite of checking json best way is to make the the binding function handle such data

link|improve this answer
feedback

it's very simple

if is json, i always contains '{}'

so you should write :

"data" is string Json as : {'name':'phucvh', 'age':'21'}

if (data.charAt(0) == '{')

{

 alert('is Json');

}
link|improve this answer
feedback

How about:

if (a.length != undefined) {
    // a is good, go ahead
}

This works for me.

link|improve this answer
1  
I don't get this. The OP is talking about an Object, not an Array. For example: var o = {"foo": "bar"}; alert(o.length); // undefined – Sam Dutton Sep 29 '10 at 16:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.