Skip to content

Instantly share code, notes, and snippets.

@ratul16
Created July 8, 2021 15:21
Show Gist options
  • Select an option

  • Save ratul16/c8b1b5a45b1967b974fb507ed02409fa to your computer and use it in GitHub Desktop.

Select an option

Save ratul16/c8b1b5a45b1967b974fb507ed02409fa to your computer and use it in GitHub Desktop.
Empty array check #FoolProof Method
if (!Array.isArray(data) || !data.length) {
this.not_found = true;
console.log('empty');
} else {
this.addresses = response.data.result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment