Skip to content

Instantly share code, notes, and snippets.

@ocmca
Last active August 29, 2015 14:17
Show Gist options
  • Save ocmca/38a2af8a7a102b4eae25 to your computer and use it in GitHub Desktop.
Save ocmca/38a2af8a7a102b4eae25 to your computer and use it in GitHub Desktop.
add .size() method to object that return the 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