Created
August 28, 2018 02:54
-
-
Save Horaddrim/bc4e0c3694c8271c2de108aa187e5784 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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