Return to Snippet

Revision: 55974
at March 2, 2012 10:45 by reverend


Initial Code
/* Get Object Size */
function objectSize(the_object){
/* function to validate the existence of each key in the object to get the number of valid keys. */
		var object_size = 0;
		for (key in the_object){
				if (the_object.hasOwnProperty(key)){
					object_size++;
				}
		}
		return object_size;
}

Initial URL


Initial Description
Function to validate the existence of each key in the object to get the number of valid key/value pairs.

Initial Title
Get Object Size in JS

Initial Tags
javascript, object

Initial Language
JavaScript