Skip to content

Instantly share code, notes, and snippets.

@pwartbichler
Created July 29, 2013 13:00
Show Gist options
  • Save pwartbichler/6104144 to your computer and use it in GitHub Desktop.
Save pwartbichler/6104144 to your computer and use it in GitHub Desktop.
Counts the length of the key-value entries of an object
getObjSize: function(obj) {
var size = 0, key;
for ( key in obj ) {
if (obj.hasOwnProperty(key)) size++;
}
return size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment