Skip to content

Instantly share code, notes, and snippets.

@michaelnagy
Created June 28, 2017 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelnagy/11d06bc626b41a40a979d469f6546c11 to your computer and use it in GitHub Desktop.
Save michaelnagy/11d06bc626b41a40a979d469f6546c11 to your computer and use it in GitHub Desktop.
Check if an object has empty properties and return the first empty property
function hasEmptyProperty(values) {
for (var key in values) {
return true && key
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment