Javascript: Checking if an object has no properties or if a map/associative-array is empty [duplicate]
Asked Answered
A

1

41

Possible Duplicate:
How do I test for an empty Javascript object from JSON?

Is there an easy way to check if an object has no properties, in Javascript? Or in other words, an easy way to check if a map/associative array is empty? For example, let's say you had the following:

var nothingHere = {};
var somethingHere = {foo: "bar"};

Is there an easy way to tell which one is "empty"? The only thing I can think of is something like this:

function isEmpty(map) {
   var empty = true;

   for(var key in map) {
      empty = false;
      break;
   }

   return empty;
}

Is there a better way (like a native property/function or something)?

Ansela answered 6/8, 2010 at 19:14 Comment(4)
Dupe - #5723Pustulant
@Daniel - thanks for the link to that question. I tried searching on SO but I didn't find anything. Mods - please close this question. Thanks!Ansela
I would go with chryss's solution over yours because of the hasOwnProperty call. If anything extends the Object prototype (something many libraries do), your method will no longer return the correct results as it will read inherited properties.Chivy
@Daniel yeah, I like it for that reason as well. Prototype seems to pollute the namespace that way.Ansela
S
51

Try this:

function isEmpty(map) {
   for(var key in map) {
     if (map.hasOwnProperty(key)) {
        return false;
     }
   }
   return true;
}

Your solution works, too, but only if there is no library extending the Object prototype. It may or may not be good enough.

Stradivarius answered 6/8, 2010 at 19:19 Comment(3)
The hasOwnProperty call is pretty vital here if any libraries are messing around with the Object prototype. +1Chivy
Thanks. I put the remark in the solution -- I had adopted the hasOwnPrototype call for a while and wasn't even thinking about it any longer.Stradivarius
you ever not even thinking about it any longer and in fact you called it hasOwnPrototype. lolCoggins

© 2022 - 2024 — McMap. All rights reserved.