Skip to content

Instantly share code, notes, and snippets.

@stefanocudini
Created March 25, 2012 12:50
Show Gist options
  • Save stefanocudini/2193424 to your computer and use it in GitHub Desktop.
Save stefanocudini/2193424 to your computer and use it in GitHub Desktop.
isempty() in javascript
function isEmpty(obj) {
for(var prop in obj) {
if(obj.hasOwnProperty(prop))
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment