Skip to content

Instantly share code, notes, and snippets.

@pcbulai
Created April 22, 2015 13:32
Show Gist options
  • Save pcbulai/a55f7204e24324db702d to your computer and use it in GitHub Desktop.
Save pcbulai/a55f7204e24324db702d to your computer and use it in GitHub Desktop.
Get JS object size
function objectSize (obj) {
var key,
size = 0;
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