vote up 6 vote down star

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

var a = ({});

How can I check if that's the case?

flag
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 at 13:50

3 Answers

vote up 16 vote down

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|flag
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 at 15:44
vote up 3 vote down

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|flag
toSource() is non-standard and doesn't work in IE or Opera (and potentially other browsers I didn't check) – Christoph Mar 25 at 12:21
This is standard in ECMA-262. There are non-standard browsers though. – Thevs Mar 25 at 20:46
@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 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 at 9:20
@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 at 9:34
show 3 more comments
vote up 0 vote down

function isEmpty(obj) { for(var i in obj) { return false; } return true; }

link|flag
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 at 13:20

Your Answer

Get an OpenID
or

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