Skip to content
Advertisement

Implement the function endangeredSpecies that returns how endangered a species is on a particular continent

An HTML div element contains lists of endangered species grouped by continent and the species population status.

JavaScript

Implement the function endangeredSpecies that returns how endangered a species is on a particular continent.

For example, endangeredSpecies(‘North America’, ‘American bison’) should return ‘Near Threatened’.

I have tried

JavaScript

Advertisement

Answer

Since you’ll probably be calling that function repeatedly it might be more efficient to capture all of the relevant information from the HTML in an object first, and then use the function to interrogate the object rather than examining the DOM each time the function is called.

In this example buildObj iterates over continent lists, and for each continent builds up a list of information from each list item. The final object looks like this:

JavaScript

You can then use the endangeredSpecies function to either return the information from the object of the species on that continent if it exists, or return a default “No data” message.

Even if you didn’t want to build the object first the code in buildObj will give you the building blocks to give you what you need.

JavaScript
JavaScript

Additional documentation

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement