Challenge: Searching for Animals in the Zoo
Task
Swipe to start coding
Use the includes method to check if certain animals are in a list.
- Write three
if-elseconditions to check if the following animals are in theanimalsInZooarray:Lion,Zebra,Panda. - If the animal is in the zoo, print:
"Yay! We have a [animal] in our zoo!", where[animal]is the name of the animal. - If the animal is not in the zoo, print:
"Oh no! No [animal] in our zoo today.".
As stated in the instructions, you will need three separate pairs of if-else conditions:
if(...) {
// code
} else {
// code
}
if(...) {
// code
} else {
// code
}
if(...) {
// code
} else {
// code
}
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 5. ChapterΒ 11
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Suggested prompts:
Can you explain this in simpler terms?
What are the main points I should remember?
Can you give me an example?
Awesome!
Completion rate improved to 1.33
Challenge: Searching for Animals in the Zoo
Swipe to show menu
Task
Swipe to start coding
Use the includes method to check if certain animals are in a list.
- Write three
if-elseconditions to check if the following animals are in theanimalsInZooarray:Lion,Zebra,Panda. - If the animal is in the zoo, print:
"Yay! We have a [animal] in our zoo!", where[animal]is the name of the animal. - If the animal is not in the zoo, print:
"Oh no! No [animal] in our zoo today.".
As stated in the instructions, you will need three separate pairs of if-else conditions:
if(...) {
// code
} else {
// code
}
if(...) {
// code
} else {
// code
}
if(...) {
// code
} else {
// code
}
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 5. ChapterΒ 11
single