Skip to content

Instantly share code, notes, and snippets.

@gitfvb
Created October 10, 2015 14:34
Show Gist options
  • Save gitfvb/909ba02f1e0463e5e830 to your computer and use it in GitHub Desktop.
Save gitfvb/909ba02f1e0463e5e830 to your computer and use it in GitHub Desktop.
Get the size of javascript associative arrays
// get the size of associative arrays
$.assocArraySize = 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