Skip to content

Instantly share code, notes, and snippets.

@samatsav
Created September 20, 2013 14:13
Show Gist options
  • Save samatsav/6638204 to your computer and use it in GitHub Desktop.
Save samatsav/6638204 to your computer and use it in GitHub Desktop.
Object prototype function to easily return it's properties number. A.k.a object size
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