Skip to content

Instantly share code, notes, and snippets.

@handleman
Created September 30, 2014 19:50
Show Gist options
  • Select an option

  • Save handleman/f8666fc1580cbb91c00f to your computer and use it in GitHub Desktop.

Select an option

Save handleman/f8666fc1580cbb91c00f to your computer and use it in GitHub Desktop.
Get Length of Javascript Object
getObjectLength = 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