Skip to content

Instantly share code, notes, and snippets.

@kontur
Created June 19, 2014 08:46
Show Gist options
  • Save kontur/5f328a0c065b2536ef16 to your computer and use it in GitHub Desktop.
Save kontur/5f328a0c065b2536ef16 to your computer and use it in GitHub Desktop.
Javascript object size (length) function
Object.size = 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