Skip to content

Instantly share code, notes, and snippets.

@lsitters
Last active August 25, 2016 14:34
Show Gist options
  • Save lsitters/5556224 to your computer and use it in GitHub Desktop.
Save lsitters/5556224 to your computer and use it in GitHub Desktop.
Fast check for Empty Objects
function isEmpty(myObject) {
for(var key in myObject) {
if (myObject.hasOwnProperty(key)) {
return false;
}
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment