Skip to content

Instantly share code, notes, and snippets.

@jruels
Created December 27, 2015 04:40
Show Gist options
  • Save jruels/d61319007cbafc501174 to your computer and use it in GitHub Desktop.
Save jruels/d61319007cbafc501174 to your computer and use it in GitHub Desktop.
javascript myChildren function
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