Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

added "s" to each element in the adult array #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions challenges/16a.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
// Create a function that will print a statement about animals and their young. The function animals() should accept two array arguments of equal length, so that calling:
//
// animals(["dog", "cat", "horse"], ["pups", "kittens", "foals"]);
// animals(["dogs", "cats", "horses"], ["pups", "kittens", "foals"]);
//
// should return this string:
//
// `Young dogs are called pups Young cats are called kittens Young horses are called foals `
//
// Example 1:
//
// animals(["dog", "cat", "horse"], ["pups", "kittens", "foals"]);
// animals(["dogs", "cats", "horses"], ["pups", "kittens", "foals"]);
//
// --->
//
// \`Young dogs are called pups Young cats are called kittens Young horses are called foals \`
//
// Example 2:
//
// animals(["cow", "eagle", "deer"], ["calves", "chicks", "fawns"]);
// animals(["cows", "eagles", "deers"], ["calves", "chicks", "fawns"]);
//
// --->
//
Expand Down