Skip to content

Instantly share code, notes, and snippets.

@juanbrusco
Created August 30, 2018 19:06
Show Gist options
  • Save juanbrusco/6d32cf4cfa1dc76531c374d093d5823c to your computer and use it in GitHub Desktop.
Save juanbrusco/6d32cf4cfa1dc76531c374d093d5823c to your computer and use it in GitHub Desktop.
Check empty - Javascript
isEmpty(myObject) {
for(var key in myObject) {
if (myObject.hasOwnProperty(key)) {
return false;
}
}
return true;
};
if(this.isEmpty(xObject){
console.log('is empty')
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment