Skip to content

Instantly share code, notes, and snippets.

@sabrinaluo
Last active December 30, 2015 07:12
Show Gist options
  • Save sabrinaluo/366038dc0ddf7c66277a to your computer and use it in GitHub Desktop.
Save sabrinaluo/366038dc0ddf7c66277a to your computer and use it in GitHub Desktop.
{} isEmpty()
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