Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

var a = ({});

How can I check whether that's the case?

share|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

19 Answers

up vote 165 down vote accepted

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

share|improve this answer
8  
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
1  
This won't work if you (or any plugin) modified Object.prototype. – Miszy Jun 5 '12 at 9:13
9  
Why do you post answer including jQuery if the question is not about jQuery at all? – Eru Oct 1 '12 at 14:10
5  
I know its an old comment, but I wonder your question @MFD3000, because the docu says: returns true, if object is empty (as the name indicates it) – Александр Фишер Dec 12 '12 at 19:44
show 3 more comments

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;
}

If ECMAScript 5 support is available, you can use Object.keys() instead:

function isEmpty(obj) {
    return Object.keys(obj).length === 0;
}
share|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
8  
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
3  
Shouldnt true and false be reversed in this function? – namtax May 5 '10 at 13:46
2  
@namtax: no - the function is named isEmpty(), so it should return false if it has a property – Christoph May 6 '10 at 16:31
4  
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 4 more comments
var isEmpty = function(obj) {
  return Object.keys(obj).length === 0;
}
share|improve this answer
5  
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 '12 at 11:10
20  
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 '12 at 12:47
2  
@nailer I don't understand your comment. For some people supporting IE8 (and earlier?) is a hard requirement. The link I included contains information on how to add .keys() to the Object prototype where missing, which I explicitly call out. – Thomas David Baker Aug 17 '12 at 14:59
2  
I would add a check to see if obj is null: 'return obj == null || Object.keys(obj).length === 0;' – Jonathan Abrams Sep 24 '12 at 17:34
1  
show 3 more comments

You can use Underscore.js.

_.isEmpty({}); // true
share|improve this answer
  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.

share|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
2  
@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

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/

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

I am using this.

function isObjectEmpty(object)
{
  var isEmpty = true;
  for(keys in object)
  {
     isEmpty = false;
     break; // exiting since we found that the object is not empty
  }
  return isEmpty;
}

Eg:

var myObject = {}; // Object is empty
var isEmpty  = isObjectEmpty(myObject); // will return true;

// populating the object
myObject = {"name":"John Smith","Address":"Kochi, Kerala"}; 

// check if the object is empty
isEmpty  = isObjectEmpty(myObject); // will return false;

from here

Update

OR

you can use the jQuery implementation of isEmptyObject

function isEmptyObject ( obj ) {
        var name;
        for ( name in obj ) {
            return false;
        }
        return true;
    }
share|improve this answer

Old question, but just had the issue. Including JQuery is not really a good idea if your only purpose is to check if the object is not empty. Instead, just deep into JQuery's code, and you will get the answer:

function isEmptyObject(obj) {
    var name;
    for (name in obj) {
        return false;
    }
    return true;
}
share|improve this answer

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.

share|improve this answer

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

share|improve this answer

In addition to Thevs answer:

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

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

it's jquery + jquery.json

share|improve this answer
I don't like using JSON because it can't work with circular object structures. – itdoesntwork Jan 3 at 18:28
function isEmpty(obj) {
  for(var i in obj) { return false; }
  return true;
}
share|improve this answer
4  
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

How about using JSON.stringify? It is almost available in all modern browsers.

function isEmptyObject(obj){
    if (JSON.stringify(obj) == '{}'){
        return true;
    } else {
        return false;
    }
}
share|improve this answer
I love this answer. – Merc Mar 6 at 7:43

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

    {}
share|improve this answer

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');
}
share|improve this answer
2  
I don't think that works - your test returns false with an empty object in at least the following browsers: Chrome 23, Safari 6, Firefox 15. – mklement Nov 26 '12 at 14:30

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.

share|improve this answer

Sugar.JS provides extended objects for this purpose. The code is clean and simple:

Make an extended object:

a = Object.extended({})

Check it's size:

a.size()
share|improve this answer

Assume you get the result as:

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

A version adding isEmpty() to the object prototype:

// As a prototype:
Object.prototype.isEmpty = function() {
    for(var i in this) 
        return false;
    return true;
}

// As a function
function objectIsEmpty(obj) {
    for (var i in obj) return false;
    return true;
}

var obj = {};
if (obj.isEmpty()) console.log('empty');
if (objectIsEmpty(obj)) console.log('empty');
share|improve this answer
2  
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 '12 at 14:01
Also, after just stumbling across this you would probably want to swap the return true/false statements. The function 'isEmpty' should return false once it finds a property, because that means that it is not empty. Semantics, but would probably be a good idea. – watcher Jul 5 '12 at 13:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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