Created
December 27, 2015 04:40
-
-
Save jruels/d61319007cbafc501174 to your computer and use it in GitHub Desktop.
javascript myChildren function
This file contains 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 myChildren(name) { | |
if (name == "Dave") { | |
return "Oldest"; | |
} | |
else if (name == "Michelle") { | |
return "Middle"; | |
} | |
else { | |
return "Not my kid!"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment