Skip to content

Instantly share code, notes, and snippets.

@Horaddrim
Created August 28, 2018 02:54
Show Gist options
  • Select an option

  • Save Horaddrim/bc4e0c3694c8271c2de108aa187e5784 to your computer and use it in GitHub Desktop.

Select an option

Save Horaddrim/bc4e0c3694c8271c2de108aa187e5784 to your computer and use it in GitHub Desktop.
function toCountIfRickHaveAFamily(rick) {
if ("family" in rick) {
if (rick.family.length >= 0) return true;
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment